123456789101112131415161718192021222324252627282930 |
- server {
- listen 80;
- listen [::]:80 ipv6only=on;
- listen 443 ssl;
- listen [::]:443 ssl ipv6only=on;
- # Replace distro-tracker by the correct FQDN here
- server_name distro-tracker;
- # Replace this SSL certificate by your own one
- ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
- ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
- access_log /var/log/nginx/distro-tracker-access.log;
- error_log /var/log/nginx/distro-tracker-error.log error;
- location / {
- proxy_set_header Host $http_host;
- proxy_pass http://unix:/var/lib/distro-tracker/gunicorn.sock;
- }
- location /static/ {
- alias /var/lib/distro-tracker/static/;
- }
- location /media/ {
- alias /var/lib/distro-tracker/media/;
- }
- }
|