Ask the Community
Ask questions, get advice from experts and peers on Digital Automation & Energy Management.
Posted: 2022-11-23 07:01 AM
Hi,
We have un Building Operation Webstation 3.2.3 installed on windows server.
In our IT we need to pass through an Apache reverse proxy.
But we can't login in the interface when we use the fqdn. We can log in with the ip address in local network.
Are we need a specific configuration for the reverse proxy ?
<VirtualHost "*:80">
ServerName foo.bar.pro
Redirect permanent / https://foo.bar.pro
</VirtualHost>
<VirtualHost "*:443">
ServerName foo.bar.pro
SSLEngine On
SSLCertificateFile /etc/ssl/certs/foo.bar.pro.pem
SSLCertificateKeyFile /etc/ssl/private/foo.bar.pro.key
SSLCertificateChainFile /etc/ssl/certs/RSA_Organization_Validation_Secure_Server_CA.pem
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLVerifyClient none
ProxyPass / https://10.0.0.10/
ProxyPassReverse / https://10.0.0.10/
ProxyPreserveHost on
ProxyRequests off
</VirtualHost>
Thanks for your advise.
Create your free account or log in to subscribe to the forum - and gain access to more than 10,000+ support articles along with insights from experts and peers.