Reputation: 305
i want to copy contents, code, build files and configuration files from a IIS(7.0) server which is running a live file and copy everything to another machine which got IIS 8 installed. the destination computer has other web sites installed, so i dont want to disturb configuration for those sites. do i first copy the code from the source and create a folder on destination and copy the files there and than follow with the configuration settings?
Upvotes: 0
Views: 671
Reputation: 12371
Probably meant for serverfault...but here goes..
paths
, connections (db), certificates (ssl), and/or expected depedencies
(assemblies, framework version/s, other web applications, etc.)C:\inetpub\wwwroot
, but you'll have to modify permissions
as necessary.
wwwroot
, possible headaches can arise with settings inheritanceIIS Manager
-> set up the new "web site"/"Application" as necessary (AppPool
, etc.)DNS
, etc. (the moment of truth)Hth...
Upvotes: 1