You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName fhir.domain.tld
# This folder exists just for certbot(You may have to create it, chown and chmod it to give apache permission to read it)DocumentRoot /var/www/html/fhir
ProxyPreserveHost On
# Letsencrypt's certbot will place a file in this folder when updating/verifying certs# This line will tell apache to not to use the proxy for this folder.ProxyPass /.well_known/ !
RequestHeader set X-Forwarded-Port"443"RequestHeader set X-Forwarded-Proto "https"ProxyPass"/""http://127.0.0.1:9080/"ProxyPassReverse"/""http://127.0.0.1:9080/"SSLCertificateFile /etc/letsencrypt/live/fhir.domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/fhir.domain.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Hello,
in the readme we have only an nginx configuration for the proxy.
Can you add, please, an apache configuration for the proxy also ?
Thanks,
The text was updated successfully, but these errors were encountered: