mirror of
https://github.com/lijiejie/eyes.sh.git
synced 2026-09-22 01:30:43 +08:00
18 lines
499 B
Plaintext
18 lines
499 B
Plaintext
server {
|
|
listen 80;
|
|
server_name eyes.sh www.eyes.sh *.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;
|
|
}
|
|
} |