nginx/mccarthyism.conf

16 lines
266 B
Text
Raw Normal View History

2021-05-22 18:30:52 +00:00
server {
2021-06-17 03:28:04 +00:00
listen 443 ssl http2;
listen [::]:443 ssl http2;
2021-05-25 03:24:31 +00:00
server_name game.exozy.me;
include conf.d/ssl;
2021-05-25 03:24:31 +00:00
location / {
2022-01-16 22:38:34 +00:00
proxy_pass http://localhost:1950;
}
2022-01-17 22:43:49 +00:00
location /socket.io/ {
2022-01-16 22:54:24 +00:00
proxy_pass http://localhost:1951;
2021-05-25 03:24:31 +00:00
}
2021-05-22 18:30:52 +00:00
}