Webserver Configuration
A simple guide to configure the webserver configuration to allow SSL traffic and ports.
Nginx Webserver Configuration
Nginx Without SSL
cd /etc/nginx/conf.d/touch dashactyl.confapt install nano
nano dashactyl.confserver {
listen 80;
listen [::]:80;
server_name <domain.com>;
location / {
proxy_pass http://localhost:<YourPort>/;
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
}
}Nginx With SSL
Enabling the Nginx Configuration
Last updated