jet-search/nginx

22 lines
574 B
Text
Raw Normal View History

2024-11-11 20:45:16 +01:00
server {
listen 80;
2024-11-13 18:40:36 +01:00
server_name jetsearch.com www.jetsearch.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name jetsearch.com www.jetsearch.com;
ssl_certificate /path/to/your/certificate.crt;
ssl_certificate_key /path/to/your/private.key;
2024-11-11 20:45:16 +01:00
location / {
proxy_pass http://127.0.0.1:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
2024-11-13 18:40:36 +01:00
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
2024-11-11 20:45:16 +01:00
}
}