26 lines
357 B
Nginx Configuration File
26 lines
357 B
Nginx Configuration File
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
access_log /var/log/nginx/access.log;
|
||
|
error_log /var/log/nginx/error.log;
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
#server_name localhost;
|
||
|
root /var/www/static;
|
||
|
|
||
|
index index.html;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|