The app is working correctly, but the preview does not appear. I've tested this and when using normal HTTP, it appears just fine.
My Apache configs read as follows:
<VirtualHost *:80>
ServerName rs.naly.tech
RewriteEngine On
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
</VirtualHost>
SSL:
<VirtualHost *:443>
ServerName rs.naly.tech
SSLEngine on
SSLCertificateFile /[Removed]/ssl.cert
SSLCertificateKeyFile /[Removed]/priv.key
SSLCertificateChainFile /[Removed]/cert.chain
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://localhost:8000/
ProxyPassReverse / http://localhost:8000/
</VirtualHost>
Is there a proper way to configure apache to use SSL with markdownnotes?
The app is working correctly, but the preview does not appear. I've tested this and when using normal HTTP, it appears just fine.
My Apache configs read as follows:
SSL:
Is there a proper way to configure apache to use SSL with markdownnotes?