lago/docker/nginx.conf
Jérémy Denquin 52ab3b351b
feat(docker): Single docker image (#464)
* add a new docker image

* add api

* add pg, redis and foreman

* add ga

* tag with latest

* update api

* right tag on submodules

* use one run
2025-02-12 17:25:22 +01:00

13 lines
201 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
location / {
root /app/front;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}