19 lines
613 B
Plaintext
19 lines
613 B
Plaintext
server {
|
|
server_name git.knravish.me;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header Host $http_host;
|
|
proxy_pass http://127.0.0.1:3001;
|
|
proxy_redirect off;
|
|
proxy_set_header Access-Control-Allow-Origin *;
|
|
proxy_read_timeout 600s;
|
|
proxy_send_timeout 600s;
|
|
}
|
|
|
|
listen 80;
|
|
}
|