-
as seen on Server Fault
- Search for 'Server Fault'
previously we have requested a wildcard ssl certificate from godaddy for our major domain.
one of the reasons was the new established exchange server 2010.
usually you require following names included in certificiate:
FQDN (e.g. mail.whatever.com)
Hostname (mail)
Domain name (whatever.com)
Autodiscover…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Be nice to be able to make wildcard certificates for use in development with makecert – turns out, it’s real easy. Just ensure that your CN= is the wildcard string to use. The following sequence generates a CA cert, then the public/private key pair for a wildcard certificate REM make the CA
makecert…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have the domain, we'll call it "mydomain.com" and I want the following virtual hosts set up to resolve in the following way:
mydomain.com / www.mydomain.com to point to /var/www/
dev.mydomain.com to point to /var/www/dev/
*.mydomain.com (all other subdomains) to point to /var/www/old
My apache…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have an odd problem with nginx subdomains. First, my configuration:
server {
listen 443 ssl;
server_name secure.example.com;
ssl_certificate example.crt;
ssl_certificate_key example.key;
keepalive_timeout 70;
location / {
fastcgi_pass…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have a web application that needs to support custom domains, in that regard I have set-up the following name based virtual server:
<VirtualHost *:80>
ServerName example.com
ServerAlias * *.example.com www.example.com example.com
RailsEnv production
RackEnv production
DocumentRoot…
>>> More