/usr/share/doc/coquelicot/examples/coquelicot.nginx is in coquelicot 0.9.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # This configuration can be directly used by issuing:
#
# ln -s /usr/share/doc/coquelicot/examples/coquelicot.nginx \
# /etc/nginx/sites-available/coquelicot
#
server {
listen 443;
ssl on;
ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
location / {
include /etc/nginx/proxy_params;
proxy_set_header X-Forwarded-SSL on;
proxy_pass http://127.0.0.1:51161;
proxy_buffering off;
}
}
|