Docker config
This commit is contained in:
parent
f453bdc7d3
commit
86e36c9c60
3 changed files with 42 additions and 0 deletions
16
nginx.conf
Normal file
16
nginx.conf
Normal file
|
@ -0,0 +1,16 @@
|
|||
worker_processes 4;
|
||||
|
||||
events { worker_connections 1024; }
|
||||
|
||||
http {
|
||||
include mime.types;
|
||||
|
||||
server {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue