Answers for "how to change the root directory for the default site nginx"

2

nginx change root directory

edit file

> sudo vim /etc/nginx/sites-available/default

server {
    listen 80;
    listen [::]:80;
    root /mnt/volume-mn1/html; # # # change this # # #
    index  index.php index.html index.htm;
    server_name  example.com www.example.com;

    location / {
    try_files $uri $uri/ /index.php?$args;        
    }
    ...
}

save file

make sure file is ok

> sudo nginx -t

restart nginx

> sudo systemctl reload nginx.service
Posted by: Guest on March-04-2021

Code answers related to "how to change the root directory for the default site nginx"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language