Welcome! Log In Create A New Profile

Advanced

How to configure mongrel_cluster + PHP + SSL with nginx

karthi r
May 12, 2010 05:42AM
http://nginx.org/en/docs/http/configuring_https_servers.html


I tried following steps below link, after i access PHP application ex:
https://loclahost/phpapp1/ http://loclahost/php/ asking save as index.php



http://nginx.org/en/docs/http/configuring_https_servers.html

This sample my sample nginx config file
upstream railsapp1 {
server 127.0.0.1:9000;
server 127.0.0.1:9001;
}
upstream
railsapp2 {
server 127.0.0.1:9010;

server 127.0.0.1:9011;
}

server {
listen 443;
server_name mydomain.com;
ssl on;
ssl_certificate mydomain_com.crt;
ssl_certificate_key mydomain_com.key;
ssl_protocols SSLv3 TLSv1;
ssl_ciphers HIGH:!ADH:!MD5;

}

location = / { rewrite ^
/phpapp1/ permanent; }
location ~ ^/phpapp1/.*\.php$ {

root /srv/http/php;
fastcgi_pass 127.0.0.1:9100;

fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
$request_filename;
include fastcgi_params;
}

location /phpapp1/ {
root /srv/http/php;
index
index.php;
try_files $uri $uri/ /phpapp1/index.php;
}

location = /phpapp1 { rewrite ^ /phpapp1/ permanent; }
location
@railsapp1 { proxy_pass http://railsapp1;
}

location = /railsapp1 { rewrite ^ /railsapp1/ permanent; }

location /railsapp1/ {
alias /srv/http/rails/railsapp1/

public/;
try_files $uri @railsapp1;
expires max;
}
location @railsapp2 { proxy_pass http://railsapp2; }
location = /railsapp2 { rewrite ^ /railsapp2/ permanent; }
location /railsapp2/ {
alias /srv/http/rails/devel/railsapp2/public/;
try_files $uri @railsapp2;
expires max;
}
location /whatever/ {
root /srv/temp;
autoindex on;
}
location /apacheapp/ { proxy_pass http://127.0.0.1:9200; }
}





R.Karthik
_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

How to configure mongrel_cluster + PHP + SSL with nginx

karthi r May 12, 2010 05:42AM

Re: How to configure mongrel_cluster + PHP + SSL with nginx

Igor Sysoev May 12, 2010 05:52AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 311
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready