Build docker image
This commit is contained in:
19
docker/etc/nginx.conf
Normal file
19
docker/etc/nginx.conf
Normal file
@ -0,0 +1,19 @@
|
||||
events {
|
||||
multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
server_tokens off;
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
charset utf-8;
|
||||
sendfile on;
|
||||
root /usr/share/nginx/html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html = 404;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user