Merge pull request #2533 from facundomedica/patch-1

Solution to problem related to firewall
This commit is contained in:
Jose Diaz-Gonzalez
2016-12-16 13:53:26 -05:00
committed by GitHub

View File

@@ -174,3 +174,22 @@ echo vm.swappiness = 10 | sudo tee -a /etc/sysctl.conf
```
***
__Symptom:__ I successfully deployed my application with no deployment errors but I'm receiving Connection Timeout when attempting to access the application.
__Solution:__
This can occur if Dokku is running on a system with a firewall like ufw enabled (some OS versions like Ubuntu 16.04 have this enabled by default). You can check if this is your case by running the following script:
```shell
sudo ufw status
```
If the previous script returned `Status: active` and a list of ports, ufw is enabled and is probably the cause of the symptom described above. To disable it, run:
```shell
sudo ufw disable
```
***