{"id":113,"date":"2026-01-28T02:00:18","date_gmt":"2026-01-28T02:00:18","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=113"},"modified":"2026-08-03T22:36:09","modified_gmt":"2026-08-03T22:36:09","slug":"how-to-connect-to-a-windows-vps-on-accuweb-hosting-2","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/","title":{"rendered":"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI"},"content":{"rendered":"<p class=\"wp-block-paragraph\">One Windows VPS can comfortably host dozens of websites. IIS was designed for exactly this: a single server splits traffic across multiple sites, each with its own content folder, application pool, and \u2014 optionally \u2014 its own SSL certificate. The mechanism that makes it work is the binding, the combination of protocol, IP address, port, and host name that tells IIS which site should answer which request. This guide shows how to add a second, third, and tenth site to one VPS using IIS Manager and PowerShell, including HTTPS with SNI.<\/p>\n<p class=\"wp-block-paragraph\">Before you start stacking sites, check your resources. Each site adds memory for its application pool and bandwidth for its traffic; a 1 GB VPS is fine for two or three small sites, while a busier portfolio wants 4 GB or more. <a href=\"https:\/\/windows-vps.org\/#providers\">Our comparison table of Windows VPS providers<\/a> shows RAM, vCPU, and monthly bandwidth per plan, which makes sizing easier.<\/p>\n<h2 class=\"wp-block-heading\">How bindings and host headers work<\/h2>\n<p class=\"wp-block-paragraph\">Every IIS site has at least one binding in the form IP:Port:HostHeader. When a request arrives, IIS walks all bindings and matches the Host header of the request against the HostHeader part. Two sites can therefore share port 80 on the same IP as long as their host names differ, for example site1.example.com and site2.example.com. If no binding matches, the request falls to the default site (usually the first one created), which is why you should keep a placeholder default site.<\/p>\n<h2 class=\"wp-block-heading\">Add a site with IIS Manager<\/h2>\n<ul class=\"wp-block-list\"><li>Open IIS Manager (inetmgr) and go to <strong>Sites \u2192 Add Website\u2026<\/strong><\/li><li><strong>Site name:<\/strong> site2; <strong>Physical path:<\/strong> D:\\sites\\site2 (create the folder and grant read access to IIS_IUSRS).<\/li><li><strong>Binding:<\/strong> Type http, IP address All Unassigned, Port 80, Host name site2.example.com.<\/li><li><strong>Application pool:<\/strong> leave the default (a new pool is created for you) or pick an existing one.<\/li><\/ul>\n<p class=\"wp-block-paragraph\">Repeat for each site. That is the entire process for plain HTTP.<\/p>\n<h2 class=\"wp-block-heading\">Add a site with PowerShell<\/h2>\n<pre class=\"wp-block-code\"><code>New-Website -Name \"site2\" -PhysicalPath \"D:\\sites\\site2\" `\n  -Port 80 -HostHeader \"site2.example.com\" -Force\nGet-Website | Select-Object Name, State, @{n=\"Bindings\";e={$_.bindings.Collection.bindingInformation}}<\/code><\/pre>\n<p class=\"wp-block-paragraph\">To see exactly which host names are bound where:<\/p>\n<pre class=\"wp-block-code\"><code>Get-WebBinding -Name site2 | Select-Object protocol, bindingInformation, sslFlags<\/code><\/pre>\n<h2 class=\"wp-block-heading\">HTTPS for many sites on one IP: SNI<\/h2>\n<p class=\"wp-block-paragraph\">With a single public IP, port 443 is shared, so each HTTPS site needs its own certificate and a way to be told apart. That is what SNI (Server Name Indication) does: the client announces the host name during the TLS handshake, and IIS picks the right certificate. SNI works on IIS 8 and later, so every modern Windows Server VPS supports it. Create the HTTPS binding with sslFlags set to 1 (SNI enabled):<\/p>\n<pre class=\"wp-block-code\"><code>New-WebBinding -Name site2 -Protocol https -Port 443 `\n  -IPAddress \"*\" -HostHeader \"site2.example.com\" -SslFlags 1<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Then assign the certificate. The easy way is IIS Manager \u2192 site2 \u2192 Bindings \u2192 https binding \u2192 Edit \u2192 Select\u2026 and choose the certificate for site2.example.com. The PowerShell way is:<\/p>\n<pre class=\"wp-block-code\"><code>$cert = Get-ChildItem Cert:\\LocalMachine\\My | Where-Object Subject -like \"*site2.example.com*\"\n$site = Get-IISSiteBinding -Name site2 -Protocol https\n$site.CertificateHash = $cert.Thumbprint\n$site.CertificateStoreName = \"My\"\n$site | Set-IISSiteBinding<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Alternative: one wildcard certificate (*.example.com) covers every subdomain with a single SNI binding. For sites on unrelated domains, buy one certificate per domain \u2014 Let\u2019s Encrypt works fine on IIS via the win-acme tool.<\/p>\n<h2 class=\"wp-block-heading\">Isolate each site in its own app pool<\/h2>\n<p class=\"wp-block-paragraph\">Separate application pools are what stop one misbehaving site from taking down the others. A crashed worker process (w3wp.exe) recycles only its own pool:<\/p>\n<pre class=\"wp-block-code\"><code>New-WebAppPool -Name \"site2_pool\"\nSet-ItemProperty -Path \"IIS:\\AppPools\\site2_pool\" -Name managedRuntimeVersion -Value \"v4.0\"\nSet-ItemProperty -Path \"IIS:\\Sites\\site2\" -Name applicationPool -Value \"site2_pool\"\nStart-WebAppPool -Name site2_pool<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Set a CPU limit per pool so one noisy site cannot starve its neighbors, and recycle pools periodically to keep memory in check:<\/p>\n<pre class=\"wp-block-code\"><code>Set-ItemProperty -Path \"IIS:\\AppPools\\site2_pool\" -Name cpu.limit -Value 50000   # 50%\nSet-ItemProperty -Path \"IIS:\\AppPools\\site2_pool\" -Name recycling.periodicRestart.requests -Value 5000<\/code><\/pre>\n<h2 class=\"wp-block-heading\">Point DNS at the VPS and test<\/h2>\n<p class=\"wp-block-paragraph\">Each host name must resolve to your VPS IP. Add A records at your DNS provider, or on the server itself with Add-DnsServerResourceRecordA if it hosts DNS. To test before DNS propagates, edit the hosts file on a test machine, or test locally from the server:<\/p>\n<pre class=\"wp-block-code\"><code>curl -H \"Host: site2.example.com\" http:\/\/127.0.0.1\/\ncurl -k -H \"Host: site2.example.com\" https:\/\/127.0.0.1\/<\/code><\/pre>\n<h2 class=\"wp-block-heading\">Common mistakes<\/h2>\n<ul class=\"wp-block-list\"><li><strong>Two sites with identical IP:port and no host header:<\/strong> IIS refuses the second binding with a conflict error \u2014 always set the Host name.<\/li><li><strong>Missing physical path ACL:<\/strong> the app pool identity (IIS AppPool\\site2_pool) needs read access (and write, if the app writes) on D:\\sites\\site2.<\/li><li><strong>HTTPS without SNI:<\/strong> if sslFlags is 0, IIS serves the default site\u2019s certificate to everyone, and browsers show a name mismatch.<\/li><li><strong>No default site:<\/strong> an unmatched host name returns 404 instead of your placeholder \u2014 keep a catch-all site bound to *:80:.<\/li><\/ul>\n<h2 class=\"wp-block-heading\">Wrap up<\/h2>\n<p class=\"wp-block-paragraph\">Hosting several sites on one IIS instance is the fastest way to make a single Windows VPS pay for itself: one license, one firewall rule set, one server to patch. For a plan with enough RAM and bandwidth for the whole portfolio, <a href=\"https:\/\/windows-vps.org\/#providers\">see the full specs and pricing<\/a> in our Windows VPS comparison.<\/p>\n<p class=\"wp-block-paragraph\">If you are running more than a handful of sites, pick a host that does not meter bandwidth aggressively. <a href=\"https:\/\/affiliate.hostwinds.com\/idevaffiliate.php?id=33921&#038;url=3698\" rel=\"noreferrer noopener sponsored\" target=\"_blank\">Hostwinds Windows VPS plans<\/a> come with generous monthly transfer and full administrative access, so adding site after site never triggers surprise overage bills.<\/p>","protected":false},"excerpt":{"rendered":"<p>Figuring out\u00a0how to connect Windows VPS AccuWeb\u200b is the very first step to unlocking the full power of your new server. It might seem like a technical task reserved for IT experts, but I am here to tell you it is surprisingly straightforward. Whether you are setting up a website, an application, or a remote desktop, the process is built on a standard protocol called RDP or Remote Desktop Protocol. <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":0,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-113","post","type-post","status-publish","format-standard","hentry","category-tutorials-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI - Windows VPS Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI\" \/>\n<meta property=\"og:description\" content=\"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-28T02:00:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-03T22:36:09+00:00\" \/>\n<meta name=\"author\" content=\"windows-vps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"windows-vps\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/\",\"name\":\"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"datePublished\":\"2026-01-28T02:00:18+00:00\",\"dateModified\":\"2026-08-03T22:36:09+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\",\"url\":\"https:\/\/windows-vps.org\/blog\/\",\"name\":\"Windows VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/windows-vps.org\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\",\"name\":\"windows-vps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"caption\":\"windows-vps\"},\"sameAs\":[\"https:\/\/windows-vps.org\/blog\"],\"url\":\"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI - Windows VPS Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/","og_locale":"en_US","og_type":"article","og_title":"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI","og_description":"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI","og_url":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/","og_site_name":"Windows VPS Blog","article_published_time":"2026-01-28T02:00:18+00:00","article_modified_time":"2026-08-03T22:36:09+00:00","author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/","url":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/","name":"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"datePublished":"2026-01-28T02:00:18+00:00","dateModified":"2026-08-03T22:36:09+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/how-to-connect-to-a-windows-vps-on-accuweb-hosting-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Host Multiple Websites on One Windows VPS: IIS Bindings, Host Headers, and SNI"}]},{"@type":"WebSite","@id":"https:\/\/windows-vps.org\/blog\/#website","url":"https:\/\/windows-vps.org\/blog\/","name":"Windows VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/windows-vps.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58","name":"windows-vps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","caption":"windows-vps"},"sameAs":["https:\/\/windows-vps.org\/blog"],"url":"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/"}]}},"_links":{"self":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/113","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/comments?post=113"}],"version-history":[{"count":2,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/113\/revisions"}],"predecessor-version":[{"id":536,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/113\/revisions\/536"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=113"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=113"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=113"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}