Skip to content

Nginxconfig

Aryanboxout edited this page Dec 16, 2021 · 2 revisions

pi@raspberrypi:~ $ sudo nano /etc/nginx/sites-available/homesite

server { listen 80; listen [::]:80; server_name dnhscodefish.tk;

location / {
    include proxy_params;
    proxy_pass http://unix:/home/ubuntu/codefish/homesite.sock;
}

}

Clone this wiki locally