Hi.
I need to set proxy connection for Apache 2.4.
My current config is not working, however it does not print any errors at starting/restarting Apache
<VirtualHost *:9975>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine On
SSLCertificateFile /path/to/cert/cer.crt
SSLCertificateKeyFile /path/to/cert/cer.key
ProxyPass / http://127.0.0.1:9999/appDir/
ProxyPassReverse / http://127.0.0.1:9999/appDir/
</VirtualHost>
Same service is written for NGinx and there it's working. I stopped it and tryied to do same thing at apache. What am I doing wrong?
Thanks!
I need to set proxy connection for Apache 2.4.
My current config is not working, however it does not print any errors at starting/restarting Apache
<VirtualHost *:9975>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine On
SSLCertificateFile /path/to/cert/cer.crt
SSLCertificateKeyFile /path/to/cert/cer.key
ProxyPass / http://127.0.0.1:9999/appDir/
ProxyPassReverse / http://127.0.0.1:9999/appDir/
</VirtualHost>
Same service is written for NGinx and there it's working. I stopped it and tryied to do same thing at apache. What am I doing wrong?
Thanks!