forked from exozyme/nginx
12 lines
300 B
Text
12 lines
300 B
Text
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
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;
|
|
}
|
|
}
|