fix: nginx is stupid

This commit is contained in:
Strix 2023-11-03 13:08:24 +01:00
parent 203ccf5708
commit 020e7b4836
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
2 changed files with 22 additions and 2 deletions

View file

@ -1,6 +1,17 @@
server {
listen 80;
server_name pad.ixvd.net sandbox.pad.ixvd.net;
server_name pad.ixvd.net;
location / {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://cryptpad;
}
}
server {
listen 80;
server_name sandbox.pad.ixvd.net;
location / {
proxy_set_header Host $host;

View file

@ -1,6 +1,6 @@
server {
listen 80;
server_name matrix.ixvd.net matrix.neo.ixvd.net;
server_name matrix.ixvd.net;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
@ -24,4 +24,13 @@ server {
proxy_pass http://conduit:6167;
client_max_body_size 0;
}
}
server {
listen 80;
server_name matrix.neo.ixvd.net;
location / {
return 302 https://matrix.ixvd.net$request_uri;
}
}