add ci/cd script

This commit is contained in:
2021-12-20 15:03:36 +07:00
parent f2b754a187
commit 0c22a77565
8 changed files with 103 additions and 0 deletions

17
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}