10 lines
153 B
Nginx Configuration File
10 lines
153 B
Nginx Configuration File
|
server {
|
||
|
listen 8080;
|
||
|
server_name _;
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html index.htm;
|
||
|
}
|
||
|
}
|