mirror of
https://github.com/grocy/grocy.git
synced 2025-08-17 03:04:36 +00:00
* typo corrections * more typos * initial work towards dockerized version of grocy * placeholder for future README * fully working dockerized grocy * updated final size of docker images
20 lines
451 B
Plaintext
20 lines
451 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
server_name _;
|
|
|
|
root /www/public; # see: volumes_from
|
|
|
|
ssl_certificate /etc/nginx/certificates/cert.pem;
|
|
ssl_certificate_key /etc/nginx/certificates/key.pem;
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
# ssl_session_cache shared:SSL:1m;
|
|
# ssl_session_timeout 5m;
|
|
|
|
# ssl_ciphers HIGH:!aNULL:!MD5;
|
|
# ssl_prefer_server_ciphers on;
|
|
|
|
include /etc/nginx/common.conf;
|
|
|
|
} |