Este commit está contenido en:
Your Name
2020-05-27 18:27:34 +00:00
padre 85ef25bc4e
commit 317639d496
Se han modificado 134 ficheros con 2237 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,16 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name mw.hatthieves.es magicworld.hatthieves.es;
location / {
proxy_pass http://172.100.0.101;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_buffering off;
}
}