Changes between Initial Version and Version 1 of Ticket #22930
- Timestamp:
- Jul 1, 2014, 5:23:27 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22930
- Property Resolution → duplicate
- Property Status new → closed
-
Ticket #22930 – Description
initial v1 1 When I set variable Debug to False in django==1.4.5, the server throws me a 500 error. I don't know what I'm doing wrong. I f I set to True it doesn't have any problem. My allowed hosts is like this 1 When I set variable Debug to False in django==1.4.5, the server throws me a 500 error. I don't know what I'm doing wrong. I f I set to True it doesn't have any problem. My allowed hosts is like this 2 {{{ 2 3 ALLOWED_HOSTS = [ 3 4 'domain name', 4 5 'ip-address', # Allow domain and subdomains 5 6 ] 7 }}} 6 8 7 9 My apache configuration is like this: 10 {{{ 8 11 <VirtualHost *:80> 9 12 WSGIDaemonProcess Vermonti python-path=/srv/www/app:/srv/www/app/ENV/lib/python2.7/site-packages … … 19 22 SetEnv DJANGO_SETTINGS_MODULE app.settings 20 23 </VirtualHost> 24 }}}