wstkeys/nginx/conf.d/nginx.conf

16 lines
385 B
Nginx Configuration File

server {
listen 80;
server_name wstkeys.top www.wstkeys.top;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
proxy_pass http://host.docker.internal:5205;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}