18 lines
439 B
Plaintext
18 lines
439 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
root /var/www/html/coconutmarketapp.in;
|
|
index index.html index.js index.htm index.nginx-debian.html;
|
|
|
|
server_name coconutmarketapp.in www.coconutmarketapp.in;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
|
|
access_log /var/log/nginx/coconutmarketapp.in.access.log;
|
|
error_log /var/log/nginx/coconutmarketapp.in.error.log;
|
|
|
|
} |