Initial commit
This commit is contained in:
commit
fa30c04815
117 changed files with 33513 additions and 0 deletions
16
deployment/nginx.conf
Normal file
16
deployment/nginx.conf
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
events {
|
||||
worker_connections 10000;
|
||||
}
|
||||
http {
|
||||
server {
|
||||
listen [::]:80 default_server;
|
||||
listen 80;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
location / {
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue