| bio | website | leafully.com |
|---|---|---|
| location | Seattle, WA | |
| age | 29 | |
| visits | member for | 2 years, 3 months |
| seen | 9 mins ago | |
| stats | profile views | 22 |
Seattle software developer working on Leafully
|
23h |
comment |
Should server IP address be in ALLOWED_HOSTS django setting? Thanks for the response - it sounds like I don't actually want my server IP in ALLOWED_HOSTS. I don't see it being recommended anywhere else, and I don't particularly care about supporting requests directly to the IP (these requests are infrequent, and my server's IP can change). The only way I can seem to trigger this type of request myself is by going to https://<server ip>, which is not something I want to support. |
|
1d |
awarded | Student |
|
1d |
comment |
Should server IP address be in ALLOWED_HOSTS django setting? @GeorgeCummins There are cronjobs that run manage.py commands on the server itself, but no scripts/jobs making http requests to the server from the outside. These SuspiciousOperation exceptions are not periodic (as you might expect with a cron job), but I've seen 7 of them in the last 11 days since upgrading to django 1.5. |
|
1d |
comment |
Should server IP address be in ALLOWED_HOSTS django setting? @KrisKumler I'm not quite sure if these requests are valid, that's what I'm trying to figure out. I've included the request data from one of these requests. All of our valid requests usually have HTTP_HOST: domain, but maybe there is some reason for clients to make requests by IP address I'm not aware of? |
|
1d |
revised |
Should server IP address be in ALLOWED_HOSTS django setting? Added request environment variables |
|
1d |
comment |
Should server IP address be in ALLOWED_HOSTS django setting? @yuwang The difference is with the linked question is in that case HTTP_HOST is google.com - so it is certainly suspicious. In my case, the HTTP_HOST is my server's actual IP address, so I'm not sure if it is valid request or not. |
|
1d |
asked | Should server IP address be in ALLOWED_HOSTS django setting? |
|
Apr 20 |
answered | django & jquery mobile - testing what I'm building |
|
Apr 18 |
awarded | Excavator |
|
Apr 18 |
revised |
Django Password Generator Updated link to go to current documentation |
|
Apr 18 |
suggested | suggested edit on Django Password Generator |
|
Mar 12 |
awarded | Critic |
|
Mar 3 |
revised |
How to covert “IPictureDisp” to “IPicture” Fixed a minor typo |
|
Mar 3 |
suggested | suggested edit on How to covert “IPictureDisp” to “IPicture” |
|
Mar 1 |
awarded | Informed |
|
Feb 27 |
awarded | Yearling |
|
Feb 27 |
answered | Does uWSGI need to be restarted when Django code changes? |
|
Feb 26 |
comment |
What are the cases when a program has the same virtual address space The term 'recursion' usually just means a function calling itself, all on the same thread and process. Maybe I'm misunderstanding what you mean by 'a program recursive calls itself'. A thread has a stack which grows inside the address space of a process during recursive function calls. |
|
Feb 25 |
comment |
Django admin commands with/without args @yaniv14 - I updated my answer to check for no args rather than a specific argument. I think the updated code should be closer to what you are trying to do. |
|
Feb 25 |
revised |
Django admin commands with/without args Changed logic to check for empty args per comment |