Score:-1

Without port site is not working http://askothers.net:8080

br flag

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 [email protected]
    ErrorLog "logs/askothers.net-error_log"
    CustomLog "logs/askothers.net-access_log" common
</VirtualHost>
in flag
Does this answer your question? [How can I forward requests from my web server?](https://serverfault.com/questions/1035016/how-can-i-forward-requests-from-my-web-server)
Score:2
ar flag

The default port for HTTP is port 80. Your server is on 8080.

You have to change your port to follow the standards, which is port 80 for HTTP and port 443 for HTTPS.

Pervez avatar
br flag
port 80 has been used for nginx server. I'm using apach server
ar flag
Then either use your Nginx server or use Nginx as reverse proxy for Apache. There is no other way.
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.