8 lines
134 B
Nginx Configuration File
8 lines
134 B
Nginx Configuration File
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
root /www;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
index index.html;
|
||
|
|
}
|
||
|
|
}
|