3
リクエストのホスト名に基づいてApache設定で使用されるwsgiスクリプトを変更することはできますか?私はさまざまなwsgiアプリケーションをデプロイして、サブドメインを使って正しいwsgiスクリプトに自動的にマップするだけでシステムを構築したいと考えています。私は主に、別のアプリケーションがデプロイされるたびにconfファイルを変更する必要がないようにしようとしています。Apacheのサブドメインに基づいて別のwsgiスクリプトを選択しますか?
<VirtualHost *:80>
ServerName mysite.us
ServerAlias *.mysite.us
WSGIDaemonProcess mysite
#can I use a different value here based on the domain?
WSGIScriptAlias//home/ubuntu/mysite/wsgi.py
<Directory /home/ubuntu/mysite>
WSGIProcessGroup mysite
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
</VirtualHost>