fixes or whateva
parent
4c60baf65f
commit
fa8ea831e5
|
@ -0,0 +1,28 @@
|
||||||
|
server {
|
||||||
|
listen 10.8.0.1:443 ssl http2;
|
||||||
|
#listen [::]:443 ssl http2;
|
||||||
|
server_name cshd.ins;
|
||||||
|
|
||||||
|
ssl_certificate /etc/nginx/ssl/cshd-ins.chain.crt;
|
||||||
|
ssl_certificate_key /etc/nginx/ssl/cshd-ins.key.pem;
|
||||||
|
|
||||||
|
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_set_header X-Frame-Options SAMEORIGIN;
|
||||||
|
|
||||||
|
proxy_pass http://10.8.0.1:5479;
|
||||||
|
|
||||||
|
proxy_read_timeout 90;
|
||||||
|
|
||||||
|
proxy_redirect http://10.8.0.1:5479 https://modmail.ins;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,19 +24,7 @@ server {
|
||||||
#limit_req zone=one burst=15;
|
#limit_req zone=one burst=15;
|
||||||
location / {
|
location / {
|
||||||
|
|
||||||
proxy_set_header Host $host;
|
return 307 https://wiki.libraryofcode.org/en/cs-support;
|
||||||
|
|
||||||
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://localhost:3020;
|
|
||||||
|
|
||||||
proxy_read_timeout 90;
|
|
||||||
|
|
||||||
proxy_redirect http://localhost:3020 https://staff.libraryofcode.org;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue