Add build step for Docker container

This commit is contained in:
Keannu Christian Bernasol 2024-10-17 18:53:49 +08:00
parent 2ca1dc97f0
commit 9fcdac56cb
3 changed files with 46 additions and 0 deletions

12
nginx/nginx.conf Normal file
View 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;
}
}