2 Answers
- Newest
- Most votes
- Most comments
0
Hello.
Since "127.0.0.1:3443" is a local host, why not try deleting it as follows?
<VirtualHost *:3443 _default_:3443>
ServerName www.example.com
ServerAlias *
SSLEngine on
SSLCertificateFile "/opt/bitnami/apache/conf/bitnami/certs/server.crt"
SSLCertificateKeyFile "/opt/bitnami/apache/conf/bitnami/certs/server.key"
DocumentRoot /opt/bitnami/projects/sample
<Directory "/opt/bitnami/projects/sample">
Options -Indexes +FollowSymLinks -MultiViews
AllowOverride All
Require all granted
</Directory>
ProxyPass / http://localhost:8081/
ProxyPassReverse / http://localhost:8081/
</VirtualHost>
After changing the settings, restart httpd using the command below.
https://docs.bitnami.com/aws/faq/administration/control-services/
sudo /opt/bitnami/ctlscript.sh restart
0
Did you add a Firewall rule on your Instance to allow public traffic through port 3443?
https://docs.aws.amazon.com/lightsail/latest/userguide/amazon-lightsail-editing-firewall-rules.html
Relevant content
- Accepted Answerasked a year ago
- asked 2 months ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 7 months ago