Tagged Questions
0
votes
2answers
33 views
Too Many Redirects: passenger+nginx SSLRequirement
I have an old rails 2.3 app that I'm in the process of moving to nginx+Passenger (from Apache+Passenger). Nginx is configured for SSL and appears to be functioning correctly, except I am getting ...
0
votes
1answer
54 views
How to configure SSL termination on Nginx with a Rails application
I get my SSL request through a load balancer which is performing SSL termination and sending the decrypted traffic to my server on port 81.
I'm running Nginx and have setup a listener to the port 81 ...
2
votes
0answers
22 views
Ajax Popup Windows not loading while configuring ssl
I am working with Ruby on Rails,Using nginx as web server and unicorn as application server. I tried to configure ssl for my application and Its works perfectly. The nginx configuration I used is ...
4
votes
1answer
59 views
Rails: https:// for a specific URL
I am developing an e commerce site. Working on Ruby on Rails.Nginx is using as web server and unicorn as application server. In my application I want to implement ssl only for the payment page,means ...
-1
votes
1answer
188 views
nginx reverse proxy, mulitple vhost SSL support [closed]
I have 1 reverse proxy NGINX server setup to direct traffic to one of two different applications:
app1.domain.com
app2.domain.com
Both of these applications need to support HTTPS. Both use the same ...
0
votes
1answer
120 views
Congiuring varnish with multiple domains+ssl Support
I am currently been involved in implementation of varnish with loadbalancer as back-end which shall forward traffic accordingly to multiple web server.
I am trying to achieve:
Public Traffic -> ...
0
votes
1answer
155 views
Setup iRedMail Admin Site in Nginx on Ubuntu 12.04
I had a hell of a time getting this to work and couldn't find a solid answer anywhere so I figured I would post my solution to SO so others may find it useful.
I wanted to run all of my SSL sites on ...
0
votes
2answers
48 views
Nginx redirect to main domain on SSL [closed]
I have two equal domains, served by virtual hosts, site.com and additional.com. I only have an SSL cert for the first one and don't really want it for another. When user is trying to log in, i'm doing ...
2
votes
1answer
65 views
Getting a HTTPS connection to work with a local Rails app and nginx?
I have a Ruby on Rails app that I'm running locally. I then run a nginx server locally, too. Now, the connection works fine over HTTP, but when I try to connect over HTTPS, I get the "502 Bad ...
0
votes
2answers
52 views
What does force_ssl do in Rails?
In a previous question I found out that I should be setting nginx ssl termination and not having Rails process encrypted data.
Then why does the following exist?
config.force_ssl = true
I see this ...
0
votes
1answer
69 views
How does Nginx pass SSL encrypted data to a Rails app?
Suppose I have a setup running my Rails app with Unicorn and using Nginx as the reverse proxy. When Nginx is configured to handle SSL does that mean it passes the encrypted data to my Rails app ...
0
votes
0answers
153 views
Chrome doesn't use TLS 1.1 even though it should [closed]
my nginx.conf is set up as such:
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
However when browsing the site using chrome ...
1
vote
1answer
74 views
How to use the force-ssl flag correctly with nginx terminating SSL
I have meteor behind nginx - nginx is listening to 443. If i set force-ssl to true in meteor, the manual recommends to "set the standard x-forwarded-proto header for the force-ssl package to work."
...
-1
votes
1answer
80 views
Nginx http rewrites inside body of the site - magento [closed]
I have problem with magento site and nginx. When I enter the site via http then of course I have all linked resources (css/js/imges) via http but if I enter it via https then still all resources are ...
0
votes
1answer
39 views
Browser downloads source code from server when I access my site through https
I'm running nginx on an ubuntu computer. I've just created an ssl certificate and configured it in the available-sites file as follows:
server {
listen 443;
server_name localhost;
...
0
votes
3answers
288 views
How to redirecting on the same port from http to https with nginx reverse proxy [closed]
i use reverse proxy with Nginx and i want to force the request into HTTPS, so if the user want to access the url with http, he will automaticly redirect to HTTPS.
Here my nginx reverse proxy config ...
1
vote
2answers
101 views
How do I configure my nodejs app to respond to only SSL connections? [closed]
I have a nodejs/express app running on ec2 with nginx and mongodb. I am running on a 8 core ec2 instance, and I have 8 seperate instances of my nodejs app running fronted by nginx. For now, I have ...
0
votes
1answer
100 views
Nginx: NonWWW (80) and rewrite one subdomain (443)
I have 'www.domain.com' and want to always rewrite it to 'domain.com' (only available through/on port 80)
I also wanted to add subdomain like 'c.domain.com', always rewrited (and only available) to ...
2
votes
0answers
122 views
Too many redirects error while trying to configure rails application as SSL using nginx and unicorn
I am trying to configure a rails application as SSL using nginx and unicorn.
Am trying to set it up locally. For that I first created a self signed certificate using openssl for nginx. I followed the ...
1
vote
1answer
72 views
HTTPS Displays on Chrome but not Safari
HTTPS Displays on Chrome but not Safari unless I click on another page, and then click back. Then https displays, and I can click it and view the certificate. I installed both the the Webserver ...
0
votes
1answer
45 views
nginx - weird ssl issue
I'm experiencing a weird Nginx SSL issue that I can't seem to figure out.
What's happening is some users were receiving invalid SSL certificate errors while browsing "site2.com", in the error it was ...
1
vote
1answer
96 views
NGINX HTTPS Timeout [closed]
My problem is that if I restart NGINX the HTTP works fine but HTTPS is not available. I receive a connection timeout. I checked that I can connect locally and checked the certificate. This works fine ...
4
votes
1answer
922 views
Why is gunicorn behind nginx with ssl 88% slower than gunicorn alone?
So, I have a simple Flask API application that is running on gunicorn running tornado workers. The gunicorn command line is:
gunicorn -w 64 --backlog 2048 --keep-alive 5 -k tornado -b 0.0.0.0:5005 ...
1
vote
0answers
221 views
nginx ssl client certificates with signed root and intermediate
I am trying to set up ssl client authentication. I am using startssl as a CA if that makes any difference. I obtained a root certificate, an intermediate certificate, and a client certificate from ...
-1
votes
1answer
255 views
nginx - set multiple server_name with ssl-support
I'ld love to use nginx to server a website with multiple Domain-Names and SSL:
webmail.example.com
webmail.beispiel.de
Both use the same vhost so I only set the server_name twice.
Problem ist, ...
3
votes
1answer
263 views
How can I securely detect SSL in CakePHP behind an nginx reverse proxy?
CakePHP (all versions that I've seen) check against $_SERVER['HTTPS'] to see whether a request has been made over HTTPS instead of plain HTTP.
I'm using nginx as a load balancer, behind which are the ...
0
votes
0answers
70 views
Django: security middleware is crashing the site
On production, I've been trying to add the djangosecure.middleware.SecurityMiddleware (from http://pypi.python.org/pypi/django-secure)to my settings, but haven't had any luck making it work.
When I ...
0
votes
2answers
200 views
Nginx force SSL (https) with cookie forwarding
I am forcing SSL for a vhost in nginx with:
if ($ssl_protocol = "") {
rewrite ^ https://www.mydomain.com$request_uri? permanent;
}
The problem is if a user is logged in, with sessions ...
0
votes
1answer
293 views
Renewal expired SSL certificate not being loaded Nginx
via Namecheap I have my SSL certificates (POSITIVESSL Comodo) which run on my Nginx webserver to offer https to my clients. This worked like a charm until my certificate expired.
Now I tried to ...
0
votes
1answer
117 views
Load Balancing - How to set it up correctly?
Here it gets a little complicated. I'm in the last few months to finish a larger Webbased Project, and since I'm trying to keep the budget low (and learn some stuff myself) I'm not touching an Issue ...
0
votes
1answer
77 views
SSL Redirection Fails
I have a server that runs both development and staging instances of a site and each version has to answer on ports 80 & 443. The staging instance -- there's only one -- works exactly as I'd ...
0
votes
0answers
53 views
nginx - option for new or already established ssl connection [closed]
I am having a rails server behind nginx and nginx acts as a reverse proxy, and ssl_terminator.
Now I am planning to include a erlang based server behind nginx to handle web socket requests.
so I ...
0
votes
0answers
24 views
How to make a Django service with Nginx to serve as https(443)
To make a facebook app to work as a type of facebook canvas, it needs to open https port.
The environment I'm setting up is the combination of nginx and gunicorn.
It seems like that I need to take ...
0
votes
1answer
163 views
Nginx on SSL (443)
My goal is to redirect from port 80 to 443 (force https), but can't manage to get a working https configuration first. I get a 503 Server Error and nothing appears in the logs. I've looked at all the ...
3
votes
1answer
611 views
HttpWebRequest doesn't seem to be sending a client SSL certificate
I'm attempting to use an HttpWebRequest to query a remote server running nginx. I need to provide a client certificate to complete the connection.
I'm doing the following:
Dim Request As ...
0
votes
0answers
87 views
How to configure nginx to apply ssl connection for specific ajax requests only?
I don't want apply ssl for all requests but only sensitive request connections,for example,logining,updating password.etc.How to configure it?
0
votes
1answer
393 views
How to generate CSR for SSL that works with Nginx & Apache?
I want to generate the CSR file for requesting SSL (wildcard) certificate. This certificate and private key will be used on multiple machines with both Apache and Nginx.
RapitSSL states the following ...
4
votes
1answer
369 views
Reverse proxy websockets (SSL), traffic through Stunnel to many node.js apps
I'm looking for some ideas...
I have a series of robust node.js apps that need to be delivered to specific users (post authentication), virtually no file serving, only the initial delivery of the ...
2
votes
1answer
237 views
running errbit with ngninx and passenger with ssl
I've got things configured so that I can login & access errbit running on nginx with ssl
My problem is that I cannot work out how to set my rails app's errbit.rb so I can run the test
the ...
0
votes
2answers
430 views
Nginx HTTPS when only matching admin subfolder
I have managed to get all /admin requests redirected to https by:
server {
listen 80;
location /admin {
rewrite ^ https://$server_name$request_uri?$args permanent;
}
}
But non ...
1
vote
0answers
614 views
Intermittent 502s with nginx+gunicorn+django
Over the past few weeks we've been getting more and more 502 errors. Currently our stack is nginx + gunicron + django on an m1.large EC2 instance backed by a small RDS instance.
They seem to become ...
14
votes
2answers
9k views
NGINX to reverse proxy websockets AND enable SSL (wss://)?
I'm so lost and new to building NGINX on my own but I want to be able to enable secure websockets without having an additional layer.
I don't want to enable SSL on the websocket server itself but ...
0
votes
1answer
579 views
HAProxy with SSL (https) and Sticky Session
I need to setup Load balancer as an alternative for ELB for Amazon as they have issue in connection timeout.
Currently, Im using HAProxy and it works normally. However, I need to use SSL for users ...
0
votes
2answers
81 views
SSL proxy for two applications on separate ports on one host name
We are using Nginx for SSL proxy and have one host name with two applications on two different ports. What is the best way to set this up in nginx.conf if possible.
0
votes
1answer
1k views
Using nginx / varnish for SSL and Non-SSL pages [closed]
I have the following:
domain.com - many urls that have no need for SSL (I would like to use Varnish to cache all of these)
domain.com/shop - all urls should be using SSL (No need for Varnish, I would ...
0
votes
0answers
81 views
outbound HTTPS calls on NGINX
Form within my PHP code on NGINX, I am making an HTTPS call to a 3rd party server. But it doesn't work. When I change it to HTTP instead of HTTPS, it works. But we can't leave that as is. We need to ...
-1
votes
1answer
1k views
Load balancing in Nginx - TCP, SSL, HTTPS [closed]
I am new to load balancing. Is it possible to load balance TCP, SSL and HTTPS request in Nginx and if yes can you give me some examples to do so?. I can load balance all my http request? but was ...
0
votes
1answer
196 views
IE sees only the first ssl cert configured in nginx
I have a site under nginx configured this way (both domains on one IP):
server {
listen 443;
ssl on;
ssl_certificate /etc/ssl/certs/oldsite.com.pem;
ssl_certificate_key ...
3
votes
1answer
302 views
Django @login_required dropping https
I'm trying to test my Django app locally using SSL. I have a view with the @login_required decorator. So when I hit /locker, I get redirected to /locker/login?next=/locker. This works fine with http.
...
0
votes
1answer
662 views
SSL Using Gunicorn for Django
I'm running a django project using gunicorn, I'd like to run it using ssl, I found on internet that I need this dictionary "{'X-FORWARDED-PROTOCOL': 'ssl', 'X-FORWARDED-SSL': 'on'}".
But where do i ...

