在使用Yii2高級模板(https://github.com/yiisoft/yii2-app-advanced)之後,它需要前端和後端的不同文檔根。如何在OpenShift for Yii2高級模板上設置不同的文檔根
Set document roots of your Web server:
for frontend /path/to/yii-application/frontend/web/ and using the URL http://frontend/
for backend /path/to/yii-application/backend/web/ and using the URL http://backend/
在我的本地機器我已經設置了Apache和配置的虛擬主機有一個別名指向後端。
<VirtualHost ..:80>
ServerAdmin ..
ServerName .
DocumentRoot "...\frontend\web"
<Directory "...\frontend\web">
Require all granted
</Directory>
Alias /backend "...d\backend\web"
<Directory "...\backend\web">
Require all granted
</Directory>
</VirtualHost>
但我不知道如何在OpenShift中做到這一點。請讓我知道在OpenShift上有沒有解決這個問題的方法?
嗨科裏等人, 感謝您的回答。我會接受這個答案,因爲它告訴我OpenShift如何至少選擇文檔根目錄。 – Sinaru 2014-12-06 07:01:38