private static void AddSite(IISHandler handler, ApplicationPool appPool, string siteName, string filePath, int port = 80) { filePath = Path.GetFullPath(filePath); handler.AddSite(appPool, siteName, filePath, port); }