English 中文(简体)
White Labeling Provider Advice
原标题:

I ve developed a website that provides a fairly basic service. Users register, fill in online forms, make a payment and then generate some pdf documents based on the data in the forms. They can log in again, downlod documents etc. Nothing amazing...

The sites been developed to change its branding based on a query string parameter (people resell the service as their own). This has been working OK up to now, however more and more people are wanting a full white label service. The good old querystring method isn t transparent enough as users can quite easily see the real domain.

I have thought about looking at the host name rather than the querystring for my branding identifier, easy enough to add a host name under the site in IIS. The issue with this is the site has to run under SSL (1 certificate per IP etc...).

So, whats the best way to achieve this? Can you get multiple domain certificates that aren t all based on the one domain (e.g. extra.test.com & www.simple.co.uk)? I ve set up wildcard SSL certs. in IIS before using the old Metabase edit trick, however the wildcard is all one domain.

Is there some proxy tool to will handle the magic? I obviously recode whatever as nessisary, I m just sure someone must have thought about this already!

问题回答

Your SSL certs are tied to a single domain. Unless you go with a wildcard cert in which case they re tied to some common root and you can have varying subdomains.

I don t think what you re trying to achieve here is possible.

My suggestion would be that if your customers are demanding their own transparent URLs with SSL, you work that into what you re billing them for the service.

Good luck!





相关问题
Session Management with Windows Authentication

In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity? In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my ...

Using Elmah with Cassini

Does anyone know if I can use Elmah with Visual Studio build-in web server(aka Cassini)? I get it working easily on IIS, but using same configuration, it doesn t work with Cassini. When I requested ...

Setting hostname in IIS, include www?

I want to set the hostname for a website I m adding in IIS 7, however do I include the www in the hostname or not? because I want both www.mysite.com and mysite.com both to point to mysite on the ...

inetpub versus any other folder

I ve run websites out of inetpub, as well as from folders just residing on the C: drive. I wonder, are there any definitive advantages to running websites out of inetputwwwroot?

IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

热门标签