forked from mirror/pixelfed
938 B
938 B
Pixelfed Docker FAQ
I already have a Proxy, how do I disable the included one?
No problem! All you have to do is
- Comment out (or delete) the
proxy
andproxy-acme
services indocker-compose.yml
- Uncomment the
ports
block for theweb
servince indocker-compose.yml
- Change the
DOCKER_WEB_PORT_EXTERNAL_HTTP
setting in your.env
if you want to change the port from the default8080
- Point your proxy upstream to the exposed
web
port.
I already have a SSL certificate, how do I use it?
- Comment out (or delete) the
proxy-acme
service indocker-compose.yml
- Put your certificates in
${DOCKER_CONFIG_ROOT}/proxy/certs/${APP_DOMAIN}/
. The following files are expected to exist in the directory for the proxy to detect and use them automatically (this is the same directory and file names as LetsEncrypt uses)cert.pem
chain.pem
fullchain.pem
key.pem