10 lines
119 B
Plaintext
10 lines
119 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
root /var/www;
|
||
|
index example.html;
|
||
|
server_name localhost;
|
||
|
|
||
|
sendfile off; #needed for nfs
|
||
|
|
||
|
}
|