Report this

What is the reason for this report?

Nginx, Django - Domain gives 400 (Bad Request) but reaching through IP Adress des work...

Posted on May 2, 2020

Hi,

I added the domain to allowed hosts already like that:

ALLOWED_HOSTS = ["161.35.74.202", "*.example.de", "example.de"]
code

This is how my nginx sites available file looks like:

server {
    listen 80;
    server_name 161.35.74.202 example.de;

code

I am really frustrated right now because I cant find the mistake here. I tried a lot and would be really really grateful for an advice. Thanks



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @mendax23,

Please change the allowed hosts from

ALLOWED_HOSTS = ["161.35.74.202", "*.example.de", "example.de"]

To

ALLOWED_HOSTS += ["161.35.74.202", "*.example.de", "example.de"]

You need to use += rather than just = so that it appends everything after the first entry.

Please try with that and see if you would get the proper outcome.

Additionally, I noticed the same question has been answered here - https://www.digitalocean.com/community/questions/400-error-bad-request-when-visiting-domain-name-ip-address-loads-fine

You may want to go through it, it might provide some other good suggestions.

Regards, KDSys

Try server_name 161.35.74.202 .example.de;

With this dot before example.de it uses *.example.de and example.de

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.