blob: dff321d67ece19c769489dfb0873a93fc3c131b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
server {
listen 80;
listen [::]:80;
server_name codetropes.com www.codetropes.com;
access_log /var/log/nginx/access.log;
location / {
root /srv/http/codetropes.com/www/;
index index.html index.htm;
}
}
|