1
0
Fork 0
forked from exozyme/nginx
nginx/game.conf

12 lines
263 B
Text
Raw Normal View History

2021-05-22 18:30:52 +00:00
server {
2021-05-25 03:24:31 +00:00
listen 443 ssl;
server_name game.exozy.me;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
location / {
proxy_pass http://localhost:5000;
}
2021-05-22 18:30:52 +00:00
}