How is it possible to change the default approot path? E.g. I want to run a PHP Framework whose web root is a sub folder:
symfony
|_ app
|_ bin
|_ src
|_ web <- Web root
|_ index.php
The web root of the WebRole is there:
WebRole <- Web root
|_ bin
|_ php
|_ resources
|_ WindowsAzureSDKForPHP
|_ diagnostics.wadcfg
|_ Global.asax
|_ Web.config
|_ index.php
ServiceConfiguration.cscfg
ServiceDefinition.csdef
When bringing both togehter I get:
WebRole
|_ bin
|_ php
|_ resources
|_ WindowsAzureSDKForPHP
|_ diagnostics.wadcfg
|_ Global.asax
|_ Web.config
|_ symfony
|_ app
|_ bin
|_ src
|_ web <- Desired web root
|_ index.php
ServiceConfiguration.cscfg
ServiceDefinition.csdef
Is there a way to tell Windows Azure that the web root has changed? (The defaultDocument-setting in the Web.config is not enough).
Edit:
After the suggested changes of astaykov, the structure looks like this:
WebRole
|_ ServiceConfiguration.cscfg
|_ ServiceDefinition.csdef
|_ symfony
|_ app
|_ bin
|_ src
|_ web <- Desired web root
|_ bin
|_ php
|_ resources
|_ WindowsAzureSDKForPHP
|_ diagnostics.wadcfg
|_ Global.asax
|_ Web.config
|_ index.php