This commit is contained in:
friendica 2013-11-05 15:01:06 -08:00
commit f9e97d97ac

View file

@ -6,8 +6,9 @@
# /etc/nginx/sites-available
#
# Then customize to your needs. To enable the configuration
# symlink it to /etc/nginx/sites-enabled and reload Nginx
# using /etc/init.d/nginx reload
# symlink it to /etc/nginx/sites-enabled and reload Nginx using
#
# service nginx reload
##
##
@ -29,7 +30,9 @@
##
server {
listen 80;
server_name red.example.net;
index index.php;
root /var/www/red;
rewrite ^ https://red.example.net$request_uri? permanent;
@ -45,10 +48,10 @@ server {
##
server {
listen 80;
listen 443 ssl;
ssl on;
server_name red.example.net;
ssl on;
ssl_certificate /etc/nginx/ssl/red.example.net.chain.pem;
ssl_certificate_key /etc/nginx/ssl/example.net.key;
ssl_session_timeout 5m;
@ -56,11 +59,10 @@ server {
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
ssl_prefer_server_ciphers on;
index index.php;
charset utf-8;
root /var/www/red;
access_log /var/log/nginx/red.log main;
access_log /var/log/nginx/red.log;
#Uncomment the following line to include a standard configuration file
#include standard.conf
# allow uploads up to 20MB in size
@ -94,6 +96,7 @@ server {
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
# or a unix socket
location ~* \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini