Nginx Webserver Configuration
Delete or disable the default config.
Copy sudo mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.disabled
Copy nano /etc/nginx/sites-enabled/AlphaCtyl.conf
Copy server {
listen 80 ;
listen [::]:80 ;
server_name <domain> ;
# Redirect HTTP to HTTPS
location / {
return 301 https://$host$request_uri ;
}
}
server {
listen 443 ssl http2 ;
listen [::]:443 ssl http2 ;
server_name <domain> ;
ssl_certificate /etc/letsencrypt/live/<domain>/fullchain.pem ;
ssl_certificate_key /etc/letsencrypt/live/<domain>/privkey.pem ;
ssl_session_cache shared:SSL:10m ;
ssl_protocols TLSv1.2 TLSv1.3 ;
ssl_prefer_server_ciphers on ;
ssl_ciphers 'HIGH:!aNULL:!MD5:!ECDHE-RSA-AES128-SHA' ;
# Location for your application
location / {
proxy_pass http://localhost:<port>/ ;
proxy_http_version 1.1 ;
proxy_set_header Upgrade $http_upgrade ;
proxy_set_header Connection 'upgrade' ;
proxy_set_header Host $host ;
proxy_set_header X-Real-IP $remote_addr ;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ;
proxy_set_header X-Forwarded-Proto $scheme ;
proxy_buffering off ;
}
# Location for your /afk endpoint
location /afk {
proxy_pass http://localhost:<port>/afk ;
proxy_http_version 1.1 ;
proxy_set_header Upgrade $http_upgrade ;
proxy_set_header Connection 'upgrade' ;
proxy_set_header Host $host ;
proxy_set_header X-Real-IP $remote_addr ;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ;
proxy_set_header X-Forwarded-Proto $scheme ;
proxy_buffering off ;
}
}
Test your configuration.
If there aren't any errors you can restart the configuration.