1 - it is redirecting to port 443. only apache proxy.
2- At times the browser appears to fail intermittently.
Version 5.9
Thanks!
First you should try without proxy. Then we'll know if it's a proxy issue or not.
Thanks Anton, I'll be doing that. Is there anything in the documentation that could reflect this? Or could you suggest changes please? Thanks!
Well, you have to check first. If it's an Apache problem, it's probably better to ask on Apache support resources.
solved it like this Anton. Thanks!
<VirtualHost *:80>
ServerName gdrastreamento.com
Redirect / https://gdrastreamento.com/
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerName gdrastreamento.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/gdrastreamento.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/gdrastreamento.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
<Location "/api/socket">
ProxyPass "ws://localhost:8082/api/socket"
ProxyPassReverse "ws://localhost:8082/api/socket"
ProxyPassReverseCookiePath "/api/socket" "/"
</Location>
<Location "/">
ProxyPass "http://localhost:8082/"
ProxyPassReverse "http://localhost:8082/"
</Location>
</VirtualHost>
</IfModule>
[Sat Feb 03 19:46:08.644282 2024] [mpm_prefork:notice] [pid 14393] AH00163: Apache/2.4.52 (Ubuntu) OpenSSL/3.0.2 configured -- resuming normal operations
[Sat Feb 03 19:46:08.644348 2024] [core:notice] [pid 14393] AH00094: Command line: '/usr/sbin/apache2'
Hello gentlemen, I would like some help please, I didn't find a configuration for https with nginx in the documentation, could someone help me if they have had or have this error here in Apache.
follow apcche configuration for reverse proxy.
Thanks!