You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
364 B
Plaintext
25 lines
364 B
Plaintext
upstream uwsgi {
|
|
server unix:/tmp/uwsgi/kompass.sock;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name 127.0.0.1;
|
|
charset utf-8;
|
|
|
|
location /static {
|
|
alias /var/www/jdav_web/static;
|
|
}
|
|
|
|
location /media {
|
|
alias /var/www/jdav_web/media;
|
|
}
|
|
|
|
location / {
|
|
uwsgi_pass uwsgi;
|
|
include /etc/nginx/uwsgi_params;
|
|
}
|
|
|
|
}
|
|
|