Skip to content
Snippets Groups Projects
Commit 89909108 authored by Christian Elberfeld's avatar Christian Elberfeld
Browse files

neue domänen für development server

parent 56898ecb
No related branches found
No related tags found
No related merge requests found
location /static {
alias /tmp/warpinfratest/static; # your Django project's static files - amend as required
}
location / {
uwsgi_pass unix:///tmp/warpinfratest/warpinfra.sock;
include /etc/nginx/uwsgi_params; # the uwsgi_params file you installed
}
location /static {
alias /tmp/warpinfra/static; # your Django project's static files - amend as required
}
location / {
uwsgi_pass unix:///tmp/warpinfra/warpinfra.sock;
include /etc/nginx/uwsgi_params; # the uwsgi_params file you installed
}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://127.0.0.1:42004/;
proxy_redirect off;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment