10 lines
132 B
Plaintext
10 lines
132 B
Plaintext
server {
|
|
listen 8080;
|
|
server_name test.com;
|
|
|
|
location / {
|
|
root /var/www/html;
|
|
index index.html;
|
|
}
|
|
}
|