I did try that at 1st and there is some syntax that your config in there
its does not like.
root@traderoom:/etc/apache2/sites-available# sudo apache2ctl configtest
AH00526: Syntax error on line 37 of
/etc/apache2/sites-enabled/000-default-le-ssl.conf:
Invalid command 'ProxyPreserveHost', perhaps misspelled or defined by a
module not included in the server configuration
Action 'configtest' failed.
### OpenMeetings ###
## Custom fragment
RewriteEngine On
RewriteCond %{HTTP:Connection} Upgrade [NC]
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteRule /(.*) ws://localhost:5080/$1 [P,L]
RedirectMatch ^/$ https://traderoom.amhcapitalgroup.com/trade-group
*_ProxyPreserveHost On_*
I can comment out that line then it does not like:
root@traderoom:/etc/apache2/sites-available# sudo apache2ctl configtest
AH00526: Syntax error on line 41 of
/etc/apache2/sites-enabled/000-default-le-ssl.conf:
Invalid command 'ProxyPass', perhaps misspelled or defined by a module
not included in the server configuration
Action 'configtest' failed.
<Location /openmeetings>
Require all granted
*_ProxyPass http://localhost:5080/trade-group_*
_* ProxyPassReverse http://localhost:5080/trade-group*_
RewriteEngine On
RewriteRule ^/(.*) http://localhost:5080/$1 [P]
</Location>
you comment out that and it does not like the next line neither
(ProxyPassReverse). Each line after gives the same errors. Maybe you
can shed some light on that as the site is up and working without errors.
root@traderoom:/etc/apache2/sites-available# curl
http://localhost:5080/trade-group
root@traderoom:/etc/apache2/sites-available#
On 4/18/19 8:37 PM, Maxim Solodovnik wrote:
I would recommend to check this answer:
https://stackoverflow.com/questions/51721771/apache-openmeetings-4-0-4-csrf-attack-when-using-apache2-as-proxypass
On Fri, 19 Apr 2019 at 05:21, Aaron Hepp <aaron.h...@gmail.com> wrote:
Finally putting an Apache front end on this install and was following the
directions on DO for this
https://www.digitalocean.com/community/tutorials/how-to-encrypt-tomcat-8-connections-with-apache-or-nginx-on-ubuntu-16-04
They use mod_jk module to connect Apache to Tomcat. In their documentation it
has a setting for where the Tomcat home directory is located.
Inside, find the workers.tomcat_home directive. Set this to your Tomcat
installation home directory. For our Tomcat installation, that would be
/opt/tomcat:
/etc/libapache2-mod-jk/workers.properties
workers.tomcat_home=/opt/tomcat (their example)
In an OM4 install where is that home directory located?
I pointed it to /opt/om4 (my directory name) as well as /opt/om4/conf as well
as /opt/om4/webapps but none of these seem
to work. Am I missing something here?