10 lines
144 B
Plaintext
10 lines
144 B
Plaintext
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /srv;
|
|
index index.html index.htm;
|
|
}
|
|
}
|