mirror of
https://github.com/lemeow125/Notes.git
synced 2025-04-27 10:11:17 +08:00
Add build step for Docker container
This commit is contained in:
parent
2ca1dc97f0
commit
9fcdac56cb
3 changed files with 46 additions and 0 deletions
12
nginx/nginx.conf
Normal file
12
nginx/nginx.conf
Normal file
|
@ -0,0 +1,12 @@
|
|||
server {
|
||||
listen 80;
|
||||
sendfile on;
|
||||
default_type application/octet-stream;
|
||||
gzip on;
|
||||
|
||||
root /usr/share/nginx/build;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html =404;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue