10 lines
134 B
Plaintext
10 lines
134 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
access_log on;
|
|
}
|
|
}
|