updated deploymentfiles
Some checks failed
Deploy / lint (push) Successful in 5s
Deploy / test (push) Successful in 28s
Deploy / deploy (push) Failing after 5s

This commit is contained in:
2026-03-03 20:05:04 +01:00
parent 12788a3946
commit 0cdf51bfc6
2 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
# Nginx reverse proxy configuration for stock-data-backend
# Domain: signal.thiessen.io → localhost:8000 (uvicorn)
# Domain: signal.thiessen.io → localhost:8998 (uvicorn)
#
# Installation:
# sudo cp deploy/nginx.conf /etc/nginx/sites-available/stock-data-backend
@@ -19,7 +19,7 @@ server {
# return 301 https://$host$request_uri;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_pass http://127.0.0.1:8998;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;