Files
eyes.sh/dnslog_nginx.conf
T
2022-04-01 12:05:54 +08:00

18 lines
475 B
Plaintext

server {
listen 80;
server_name eyes.sh;
uwsgi_pass_request_headers on;
location = /favicon.ico { access_log off; log_not_found off; }
location /static {
alias /dnslog/static;
}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8000;
}
}