1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

update the names in the nginx conf

This commit is contained in:
Alexis Metaireau 2011-03-10 17:33:48 +00:00
parent de708ce3ef
commit 044ccd2d47

View file

@ -17,12 +17,12 @@ server {
proxy_busy_buffers_size 32k; proxy_busy_buffers_size 32k;
proxy_intercept_errors on; proxy_intercept_errors on;
if (!-f $request_filename) { if (!-f $request_filename) {
proxy_pass http://fractals_backend; proxy_pass http://budget_backend;
break; break;
} }
} }
} }
upstream fractals_backend { upstream budget_backend {
server unix:/path/to/app/budget.gunicorn.sock; server unix:/path/to/app/budget.gunicorn.sock;
} }