vote up 2 vote down star

Hi,

Is there a way to automatically publish a website to multiple locations at once?

Our website is load balanced across multiple servers, so when I want to publish I have to do it to each server individually.

Thx, Trev

flag
Publish with Click Once? Publish ASP .Net website? – Daok Dec 17 '08 at 16:49

2 Answers

vote up 4 vote down

Perhaps with some build scripts, such as MSBuild? Or perhaps you could create a script (PowerShell, VBScript, whatever), which copies all contents of a directory, and invoke it in the post build event (configurable in Visual Studio), so that once your solution (or the last project, actually) is built the script will run and copy the output files to wherever you need them.

link|flag
This is what I had done, as well. I published to what was essentially a "drop" folder and had a script to do the pushes to the final locations. It worked and was not too bad, unless you had multiple named configurations. – joseph.ferris Dec 17 '08 at 17:02
vote up 0 vote down

You could

  1. Publish the content to a UNC and have all of the web servers work off of that UNC
  2. Push the content from your staging/QA server to production using a tool like MSDeploy
  3. Use FRS to replicate the files from a "master" webserver to everyone else.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.