Allows you to run your own Ghostbin server.
1.5K
This repository contains the Dockerfile of Ghostbin for running an private Ghostbin server in a docker container.
I based my image on the Debian 8 Jessie image.
docker run -p 8619:8619 -v /var/log/ghostbin:/logs -d platzhalter/ghostbinhttp://<ipaddress>:8619 in your Browserserver {
listen 80;
server_name <hostname> www.<hostname>;
location / {
proxy_http_version 1.1;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_redirect off;
proxy_pass http://<ipaddress>:8619;
}
}
<VirtualHost *:80>
ServerName <hostname>
ServerAlias www.<hostname>
ProxyPass / http://<ipaddress>:8619/
ProxyPassReverse / http://<ipaddress>:8619/
</VirtualHost>
-v /var/log/ghostbin:/logs flag, but it is a useful feature in case you want to have logs.Content type
Image
Digest
Size
228.3 MB
Last updated
over 10 years ago
docker pull platzhalter/ghostbin