mirror of https://gitlab.crans.org/bde/nk20
29 lines
725 B
Plaintext
29 lines
725 B
Plaintext
# This is an example NGINX site configuration for note_kfet behind a reverse proxy
|
|
# Only HTTP, please use a reverse proxy to secure it!
|
|
|
|
server {
|
|
# Serve this site by default on HTTP
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
# Max upload size
|
|
client_max_body_size 75M;
|
|
|
|
# Django statics and media
|
|
location /static {
|
|
alias /var/www/note_kfet/static;
|
|
}
|
|
location /media {
|
|
alias /var/www/note_kfet/media;
|
|
}
|
|
location /doc {
|
|
alias /var/www/documentation;
|
|
}
|
|
|
|
# Send all non-media requests to the Django server.
|
|
location / {
|
|
uwsgi_pass unix:///var/www/note_kfet/note_kfet.sock;
|
|
include /etc/nginx/uwsgi_params;
|
|
}
|
|
}
|