16 lines
370 B
Nginx Configuration File
16 lines
370 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://flask: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;
|
|
}
|
|
} |