Tagged Questions
0
votes
1answer
9 views
SSL installed on Apache2 but HTTPS not working
I recently installed an SSL certificate on my Amazon EC2 Ubuntu 12.04(32bit) server running Apache 2.
When I attempt to access my site via https, it does not load. When I perform an nmap scan, i see ...
0
votes
1answer
7 views
Using SSL on two VirtualHosts
So I got an SSL from GoDaddy.
It works for my public site mysite.com.
I would like now to have an SSL connection for my administrator.mysite.com
So I created a self signed certificate using openssl ...
0
votes
0answers
12 views
Redirect all (even subdirs) to HTTPS + other rewrite rules
on server I got /protected/.htaccess
RewriteEngine on
RewriteCond %{HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
then I got /protected/project1/.htaccess
...
-1
votes
0answers
16 views
Apache won't start after changing SSL certificate [closed]
I've changed two SSL certificates on my server.
Copied the old certificates to another directory
Changed the paths in each VirtualHost
Changed LogLevel to Debug
But Apache can't restart, without ...
0
votes
1answer
9 views
Intranet Extranet authentication
I have developed a php/mysql application which need to be accessed via both intranet and extranet. I want to give access to a certain page(add_company_details.php) to both intranet and extranet. How ...
0
votes
0answers
30 views
How to install private key and root certificate on Linux server
I have a linux server with apache tomacat running on that . In my application I am using a two way SSL authentication and the server is generating a certificate for each and every client for mutual ...
-1
votes
1answer
38 views
Securing Tomcat Using SSL Behind an Apache2 Virtual Host [closed]
I have a tomcat server running behind apache virtual hosts (so I can use multiple domains on the same server). All the apache does is take the host name and forward the request to the proper tomcat ...
0
votes
0answers
8 views
Convince Apache of the original client protocol
So I have a relatively straight forward server stack utilizing a SSL offloading and an HTTP load balancer. The setup looks something like this:
(client) -> (SSL offload - stud) -> (balancer - ...
0
votes
0answers
10 views
Securing a single directory in Apache with SSL but redirect other requests back to http
I have used the following rule in my non-SSL virtualhost to redirect all requests to the /members directory on my site to https.
Redirect permanent /members https://www.example.com/members
It works ...
0
votes
0answers
11 views
Apache SSL Config Multiple CNAMEs
I have a single web server an wish to host a site using SSL with multiple CNAMES ex:
www.domain.com
development.domain.com
services.domain.com
I have it working hosting only one of them but when I ...
-2
votes
0answers
17 views
Shared ssl certificate and secure url on localhost for testing [closed]
How to setup shared ssl and shared secure url on localhost ( apache2 running on Lion osx ) for testing purposes?
0
votes
0answers
24 views
Apache CXF Client SSL Configuration
I have created a web service and a client using apache cxf.
I have deployed the web service using self signed SSL certificate.
Now when i used the client to connect to web service I have done ...
0
votes
0answers
24 views
apache wildcard ssl certificate with nodejs on single subdomain
I have apache setup with a wildcard certificate that is used for serving up subdomains. I am all the subdomains work with ssl but I am trying to add a dummy REST api on one of the subdomains. My ...
0
votes
0answers
19 views
Tomcat server doesn't set secure flag on session id
I read that in Tomcat > 6 the secure flag gets set automatically on JSESSIONID cookie. Now I've just looked at the responses I got and the secure flag is not set. The installed version is 7. How come ...
1
vote
1answer
33 views
Forcing domain to run under different UID apache breaks under SSL
Without using ssl, my apache conf has a vhost which looks like this:
<VirtualHost 192.175.55.83:80>
ServerName nutra4you.com
ServerAlias www.nutra4you.com
DocumentRoot ...