Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions compose/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ http {
server_name <collab-server-fqdn>;
proxy_buffer_size 128k;
proxy_buffers 4 256k;
ssl_certificate <path-to-ssl-bundle.crt>;
ssl_certificate_key <path-to-ssl.key>;
ssl_certificate <path-to-ssl-collab-bundle.crt>;
ssl_certificate_key <path-to-ssl-collab.key>;
ssl_dhparam <path-to-dhparam.pem>;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1.2;
Expand Down Expand Up @@ -55,8 +55,8 @@ http {
proxy_buffers 4 256k;

# setup the SSL certificate
ssl_certificate <path-to-ssl-bundle.crt>;
ssl_certificate_key <path-to-ssl.key>;
ssl_certificate <path-to-ssl-intel-bundle.crt>;
ssl_certificate_key <path-to-ssl-intel.key>;
ssl_dhparam <path-to-dhparam.pem>;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1.2;
Expand Down
Loading