Is it safe to rename the default website in IIS 7.5?

I am having a problem deploying to a default website using web deployment. The problem is similar to this: the MSDeploy batch file no longer processes quotes , where web page deployment delays deployment paths with spaces.

The easiest way to solve this is to rename the default website to another location without spaces. Is it safe to rename a default website? Could this cause any side effects?

+4
source share
1 answer

Well, I tried, and the answer is Yes - you can rename the default website without any side effects.

You need to recycle the application again, and then everything will work as before.

Any script that links to the default website (e.g. web deployment) needs to be updated.

+7
source

Source: https://habr.com/ru/post/1390602/


All Articles