StamusNetworks / Amsterdam

Docker based Suricata, Elasticsearch, Logstash, Kibana, Scirius aka SELKS
GNU General Public License v3.0
183 stars 42 forks source link

Internal Server Error #42

Closed redhandpl closed 7 years ago

redhandpl commented 7 years ago

Hi,

I've installed the latest version of Amsterdam and have containers running. When accessing localhost I can see everything. The problem is when accessing remotely by IP address. I get "Internal Server Error".

Do I have to configure additionally something?

regit commented 7 years ago

Yes but it should be documented. You need to add ALLOWED_HOSTS in config/scirius/local_settings.py See https://docs.djangoproject.com/en/1.10/ref/settings/#allowed-hosts for complete information.

To authorize from anywhere, add that to the end of local_settings.py and restart amsterdam:

ALLOWED_HOSTS = [ '*' ]
redhandpl commented 7 years ago

Ah, the django variable. Thanks. It works.