Tagged Questions
1
vote
1answer
34 views
Internet Explorer receives 403 Error when viewing dev environment SSL test certificate (using MAMP)
I've been developing a site with MAMP which has a handy way of generating (obviously) unverified SSL certificates for testing purposes.
All was well when testing with Chrome, Firefox, Safari you ...
2
votes
1answer
105 views
How can I force a VirtualHost in Apache to not listen for undefined subdomains on 443?
In /etc/apache2/sites-available/example.com:
<VirtualHost *:443>
ServerName www.example.com
DocumentRoot /var/www/example.com/htdocs
SSLEngine on
...
2
votes
0answers
205 views
Seeking htaccess help: Converting multiple subdomains (both http and https) to www.domain.com using .htaccess
I've been trying to get an answer to this question on other forums (the folks at SuperUser thought this was the place I needed to post) and via my connections, but I haven't gotten very far. Hopefully ...
1
vote
1answer
136 views
Getting fingerprint from Apache certificate (combined with key)
I have just created a certificate for my Apache SSL host using:
make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/ssl/private/myhost.crt
Now what is the correct way to get the fingerprint out of ...
1
vote
1answer
287 views
URL Rewrite for SSL
I have SSL configured for a cart directory in my website. I'm having a very difficult time trying to configure SSL for a different directory within the same website. I ask the question on SO, and was ...
1
vote
1answer
209 views
SSL on multiple directories
I have a website that is http, but has a port set up for https for a specific directory that is for the shopping cart. Now I'd like to use our SSL on a different directory in the same site as well. ...
0
votes
2answers
860 views
Apache2: How to host apps at different ports with SSL?
I'm trying to achieve quite simple task actually.
I bind application to a port, I enable SSLEngine at each VirtualHost entry for that port. Everything works beside one thing: if you type url that ...
4
votes
2answers
704 views
running multiple name-based web applications on a single ip address with SSL
I'm working on web projects.
My scenario is I have two web applications running on one single web server (Apache).
Due to my company policy, they ask me to put both of them on SSL (Port #443), no ...
2
votes
1answer
2k views
Redirect HTTPS request to HTTP in Apache
Can an HTTPS request be redirected to an HTTP request in Apache? If so, how?
3
votes
2answers
4k views
Redirect Permanent and https
I just set up HTTPS on my server, and I have an issue with redirect permanent.
Example http://domain.com/index.html it redirect me to http://www.domain.comindex.html
The / (tail ending slash) is ...
1
vote
3answers
596 views
How to avoid basic authentication warning when using protected directory?
I used cpanel on my hosted site to set up a password protected directory to allow downloads of specific files.
I send people a link to the file by email and include their username and password so ...
2
votes
1answer
322 views
Error 500 on phpMyAdmin via https from “self-signed certificate”?
I have used Cpanel to generate and install a self-signed certificate for HTTPS and now that I have installed phpMyAdmin once I access phpMyAdmin via HTTPS it throws out an error 500 message.
Why is ...
2
votes
3answers
1k views
Session cookie being dropped when moving under the SSL
The short version:
I've got a session cookie being set on a dev site but it's not being picked up when I move to the SSL (so the shopping cart empties when you go to the checkout).
When it's set on ...
0
votes
1answer
325 views
Why isn't HTTP Authentication working on this Apache HTTPS site?
I have set up a private MoinMoin wiki, accessed through HTTPS, but I cannot get Basic HTTP Authentication to work on it. I have it working on another site, using a similar vhosts file, so I cannot ...
2
votes
1answer
271 views
Restrict SSL access for some paths on a apache2 server
I wanted to allow access to www.mydomain.com/login through ssl only.
E.g.: Whenever someone accessed http://www.mydomain.com/login, I wanted him to be redirect to https://www.mydomain.com/login so ...
1
vote
1answer
40 views
www.mydomain.com secure but not mydomain.com? [duplicate]
Possible Duplicate:
www.mydomain.com secure but not mydomain.com?
Hi
We've got our website running and https / ssl works just great.
EXCEPT
when users enter http://www.mydomain.com and ...
1
vote
2answers
86 views
SSL Certification on both www and no-www domains
We've got our website running and HTTPS / SSL works just great.
EXCEPT: when users enter http://www.mydomain.com and then enter the secure area and get directed to https://www.mydomain.com it works ...
4
votes
1answer
3k views
How to install mod_ssl for Apache
I have installed Apache httpd a while ago and have recently come back to it to try setup SSL and get it serving several different tomcat servers.
At the moment I have two completely separate tomcat ...
1
vote
1answer
121 views
fully encrypt website using SSL
I had been trying to use SSL for the following site http://bit.ly/e8Lj32 ,
although the SSL certificate is signed properly by networksolutions , each time the pages are loaded it still displays an ...
1
vote
2answers
2k views
Mod Rewrite - directing HTTP/HTTPS traffic to the appropriate virtual hosts
I have an Apache2 web server (v. 2.2.16) running on Debian hosting three virtual hosts. The first two hosts are HTTP only (server1 and server2). The last host is HTTPS only (server3). My virtual host ...
6
votes
3answers
1k views
Force SSL and WWW in .htaccess
I'm looking for a way to force SSL and WWW.
I've been able to force both separately but together I keep running into redirection issues. The following code works when handling a URL in this format: ...
0
votes
4answers
308 views
Is there a free way to ssl certify my local website?
I'm basically trying to setup my local website with ssl. All I need to do is certify it, but couldn't find a free way to do it. Most websites, like godaddy for instance, charge to certify your ...
4
votes
1answer
4k views
Properly force SSL with .htaccess, no double authentication
I'm trying to force SSL with .htaccess on a shared host. This means there I only have access to .htaccess and not the vhosts config. I know you can put a rule in the VirtualHost config file to force ...
3
votes
2answers
10k views
Can I skip the PEM pass phrase question when I restart the webserver?
After buying a multi-domain SSL certificate I have started testing it with the Nginx webserver (following documentation in their SSL wiki page).
Everything is fine, it works and I get a green ...