mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 12:24:02 +00:00
feat(infra): add docker image build and deploy pipeline (#13)
This commit is contained in:
16
apps/miniapp/nginx.conf
Normal file
16
apps/miniapp/nginx.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
listen 8080;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location = /health {
|
||||
default_type application/json;
|
||||
return 200 '{"ok":true}';
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user