etesync-server/example-configs/nginx-uwsgi/my.server.name.conf

37 lines
946 B
Plaintext
Raw Normal View History

2020-09-10 16:20:52 +00:00
# nginx configuration for etebase server running on https://my.server.name
# typical location of this file would be /etc/nginx/sites-available/my.server.name.conf
server {
server_name my.server.name;
2020-09-10 16:20:52 +00:00
root /srv/http/etebase_server;
client_max_body_size 20M;
location /static {
expires 1y;
try_files $uri $uri/ =404;
}
2020-09-10 16:20:52 +00:00
location /media {
expires 1y;
try_files $uri $uri/ =404;
}
location / {
2020-09-10 16:20:52 +00:00
uwsgi_pass unix:/path/to/etebase_server.sock;
include uwsgi_params;
}
# change 443 to say 9443 to run on a non standard port
2020-09-10 16:20:52 +00:00
listen 443 ssl;
listen [::]:443 ssl;
# Enable these two instead of the two above if your nginx supports http2
# listen 443 ssl http2;
# listen [::]:443 ssl http2;
2020-09-10 16:20:52 +00:00
ssl_certificate /path/to/certificate-file
ssl_certificate_key /path/to/certificate-key-file
# other ssl directives as needed
2020-09-10 16:20:52 +00:00
}