14 lines
194 B
Nginx Configuration File
14 lines
194 B
Nginx Configuration File
http {
|
|
server {
|
|
listen 1238;
|
|
|
|
root /nginx;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
}
|
|
events {}
|