app-store/apps/notemark/data/proxy/nginx.conf
Stavros 952454efda
Add Notemark. (#1200)
* Add notemark.

* Fix error.

* Fix nginx conf.

* Update description.md

---------

Co-authored-by: Nicolas Meienberger <47644445+meienberger@users.noreply.github.com>
2023-09-27 21:41:34 +02:00

19 lines
274 B
Nginx Configuration File

upstream notemark-backend {
server notemark-backend:8000;
}
upstream notemark {
server notemark:8000;
}
server {
listen 80;
location / {
proxy_pass http://notemark;
}
location /api {
proxy_pass http://notemark-backend/api;
}
}