Skip to content

Instantly share code, notes, and snippets.

@matthewkremer
Created August 9, 2012 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewkremer/3304760 to your computer and use it in GitHub Desktop.
Save matthewkremer/3304760 to your computer and use it in GitHub Desktop.
"can't adapt type decimal" Error
<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>
<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