Created
August 9, 2012 14:44
-
-
Save matthewkremer/3304760 to your computer and use it in GitHub Desktop.
"can't adapt type decimal" Error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
ServerName mysite1.com | |
WSGIDaemonProcess mysite1 | |
WSGIScriptAlias / /var/www/mysite1.wsgi process-group=mysite1 application-group=%{GLOBAL} | |
</VirtualHost> | |
<VirtualHost *:443> | |
ServerName site2.com | |
WSGIDaemonProcess mysite2 | |
WSGIScriptAlias / /var/www/mysite2.wsgi process-group=mysite2 application-group=%{GLOBAL} | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
ServerName mysite1.com | |
WSGIScriptAlias / /var/www/mysite1.wsgi application-group=%{GLOBAL} | |
</VirtualHost> | |
<VirtualHost *:443> | |
ServerName mysite2.com | |
WSGIScriptAlias / /var/www/mysite2.wsgi application-group=%{GLOBAL} | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment