ci: docker compose for easy access
This commit is contained in:
parent
a6edf804b4
commit
c42b8e2904
11 changed files with 249 additions and 13 deletions
11
apps/web/nginx.conf
Normal file
11
apps/web/nginx.conf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue