Is it possible to edit web.config of cloud app deployed on windows Azure without redeploying my app?
Is it possible to edit web.config file of my cloud app deployed on Windows Azure without redeploying my app ?
Scenario is like-->
- Cloud app is deployed on Azure with 3 instances.
- web.config has some static text in appsetting which is displyed on the Home Page(for example - ©开发者_如何学JAVA 2009 My site. All rights reserved)
- Now I wish to change that static text mentioned in Web.Config from 2009 to 2010.
- Now I wish to edit Web.Config without redeploying my site.
- I do not wish to --> deploy my app on stagging with updated Web.Config and then swap it with production.
Is there any trick to update the files from package deployed at runtime ?
According Maxim in the comments below this answer is now out of date.
You can programmatically modify the web.config settings of a web role in the OnStart event using the Microsoft.Web.Administration.ServerManager library.
*** leaving the original answer as it was correct at the time and as, I have not used Azure since answering this question, and I am not 100% sure of the valid answer.
In a word no.
You must use the service configuration file for such settings.
To decide on whether to place keys in the service configuration settings versus web configuration settings.
You could ask yourself the following questions:
Does this setting change with every deployment? If so then the web configuration settings is the correct place for this information.
Will this setting change after deployment? If so then the service configuration settings is the correct place for this information.
The Web.config file is part of the deployment package and so is read-only when deployed to Azure, in order to update the settings you will need to redeploy.
Whereas the service configuration file is uploaded with, but not packaged with, the deployment package, and therefore you can upload or edit the file without redeploying your service.
It is possible and if you do changes to web.config, the ASP.NET app will restart with the new settings, just like you would expect on "normal ASP.NET". You just need to be certain you are making the right updates to web.config or your instance is probably impossible to repair once ASP.NET is gone with a web.config error.
If you have web.config as part of your deployment package you need to change the file permissions on it, which you can do from RoleEntryPoint.OnStart().
Another way would be to have your ASP.NET app write the initial web.config itself via some init web handler.
By default the ASP.NET app will not have update or delete permissions to files from the deployment package or files written by your RoleEntryPoint code, while it has full access to files it itself create. This behavior is only experienced on "real Azure" while things behave otherwise when running locally with the SDK.
Check this for info about writing files and setting permissions on files from RoleEntryPoint.OnStart(): How can I get the WebRole site root path from RoleEntryPoint.OnStart()?
Yes, this can be done. The steps are:
- Use the environment variable 'RdRoleRoot' to find the root of the role.
- Look for 'RoleModel.xml' file
- Load the 'RoleModel.xml' file and find the entry for your site under "Sites" node
- In this entry look for 'physicalDirectory' attribute which is the relative path to the directory containing your web.config file
- Combine role root path with this physicalDirectory path to get the full path
I wrote a blog post http://anuchandy.blogspot.com/2014/02/changing-webconfig-file-deployed-on.html with sample code.
yes you can, all you need to do is create a RDC for Azure and goto E:\siteroot\0 where you will see all your deployed files. and just edit web.config what you like. it will work for both Production and staging no need of redeploy or re-image or reboot.
May this post Thread is asked long back, but for some one like me this definitely helpful :-)
13th July 2018
The Azure Portal has an App Service Editor (in preview) under your deployed App Service. Selecting this gives a Visual Studio Code-like editor pointed at your deployed Azure Website making edits to web.config
(or any other file) easy:
精彩评论