I have the following synchrony.conf file (template):
LoadModule ssl_module modules/mod_ssl.so
Listen 443
<VirtualHost *:80>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://{{ server_fqdn }}%{REQUEST_URI}
ServerName {{ server_fqdn }}
ServerAdmin {{ user_address }}</VirtualHost>
<VirtualHost *:443>
ServerName {{ server_fqdn }}
ServerAdmin {{ user_address }}
ProxyPass / http://localhost:8091/
ProxyPassReverse / https://{{ server_fqdn }}/
ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto "https"
SSLEngine on
SSLProtocol all
SSLCertificateFile {{ ssl_cert_path }}
SSLCertificateKeyFile {{ ssl_key_path }}
</VirtualHost>
This configuration works with my confluence nodes, but not the standalone synchrony nodes. I get a "Service Temporarily Unavailable" when I hit apache, but going to the port 8091 works correctly.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.