I can't access the server from public IP.
On a new Image,
curl http://localhost
I can see a page titles Mattermost - Signup
After changing the following in the file /etc/nginx/sites-available/mattermost
I've changed proxy_pass http://10.10.10.2:8065;
by my AWS EC2 server public IP > proxy_pass http://xxx.xxx.xxx.xxx:8065;
I've done a
sudo service nginx restart
when I type curl http://xxx.xxx.xxx.xxx
I get curl: (7) Failed to connect to xxx.xxx.xxx.xxx port 80: Connection timed out
To make sure in Security Groups, I've opened all ports from all traffic. (It doesn't solve my problem)
So I don't know what I'm missing here.
Any ideas ?