How can I fix it without a port?
http://askothers.net:8080 is working but http://askothers.net is not working
<VirtualHost *:8080>
    ServerName askothers.net
    ServerAlias www.askothers.net
    Redirect / https://www.askothers.net/
</VirtualHost>
<VirtualHost *:443>
    ServerName askothers.net
    ServerAlias www.askothers.net
    DocumentRoot "/opt/bitnami/apache/htdocs/askothers.net"
    SSLEngine on
    SSLCertificateFile "/etc/letsencrypt/live/askothers.net/fullchain.pem"
    SSLCertificateKeyFile "/etc/letsencrypt/live/askothers.net/privkey.pem"
    ServerAdmin info@askothers.net
    ErrorLog "logs/askothers.net-error_log"
    CustomLog "logs/askothers.net-access_log" common
</VirtualHost>
 
     
    