Add nginx.conf
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 10s
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 10s
This commit is contained in:
parent
9201c0d107
commit
d694c590e2
1 changed files with 24 additions and 0 deletions
24
nginx.conf
Normal file
24
nginx.conf
Normal file
|
@ -0,0 +1,24 @@
|
|||
user nginx;
|
||||
worker_processes 1;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
server {
|
||||
listen 0.0.0.0:80;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
alias /usr/share/nginx/html/.well-known;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue