Skip to content

Hosting

expitau edited this page Dec 9, 2022 · 1 revision

You should not trust that I keep my website up indefinitely. If I were to take it down someday you could lose access to your accounts.

Github Pages

Because the site is static, it can easily be hosted on Github Pages. Clone the repository, and go to Settings > Pages and deploy from /docs.

Docker

The nginx Docker image can be found here. Use it with

docker run --name passbirb -v ./docs/:/usr/share/nginx/html:ro -d -p 8080:80 nginx

And then navigate to http://localhost:8080 to see the service. Alternatively, you can use docker-compose with a file like

version: "3"

services:
    passbirb:
        image: nginx
        ports:
            - 8080:80
        volumes:
            - ./docs:/usr/share/nginx/html
Clone this wiki locally