Initial Commit
This commit is contained in:
18
nginx.conf
Normal file
18
nginx.conf
Normal file
@@ -0,0 +1,18 @@
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
add_header Cache-Control max-age=0,no-cache,no-store,must-revalidate;
|
||||
include mime.types;
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
root /website;
|
||||
index index.htm;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user