Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#27485 closed New feature (wontfix)

Allow ALLOWED_HOSTS to accept an IP-range / wildcard

Reported by: Tom Turner Owned by: nobody
Component: HTTP handling Version: 1.10
Severity: Normal Keywords: ALLOWED_HOSTS
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi

Now that Django 1.10.3 forces ALLOWED_HOSTS on with debug I have a problem.

The problem is that when I developing I use an ip-address range of 192.168.1.*.
The Ip-adress can change depending on the computer I use.

so I required the ability to add wildcard partly in an hostname.

ie

ALLOWED_HOSTS = ['192.168.1.*', '.mydomain.com']

I have seen this solution that doesn't require Django to be changed however I don't like it as I feel this could be a secuirty issue

http://stackoverflow.com/questions/37031749/django-allowed-hosts-ips-range

I am happy to produce a patch however I will only do this if it's likely to get submitted

Change History (2)

comment:1 by Tim Graham, 7 years ago

Component: UncategorizedHTTP handling
Summary: ALLOWED_HOSTS ip-range / wildcardAllow ALLOWED_HOSTS to accept an IP-range / wildcard
Triage Stage: UnreviewedAccepted

I'm sympathetic to the use case, however, before coding I think it'd be good to raise the idea on the DevelopersMailingList to ensure no one sees a problem with it or has an alternative.

comment:2 by Tom Turner, 7 years ago

Resolution: wontfix
Status: newclosed

After posting on the group there are way round the problem.

The one I going with is

from socket import gethostname, gethostbyname 
ALLOWED_HOSTS = [ gethostname(), gethostbyname(gethostname()), ] 
Version 0, edited 7 years ago by Tom Turner (next)
Note: See TracTickets for help on using tickets.
Back to Top