Skip to content

Instantly share code, notes, and snippets.

@chrismeller
Created April 16, 2014 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismeller/10912995 to your computer and use it in GitHub Desktop.
Save chrismeller/10912995 to your computer and use it in GitHub Desktop.
Nginx vhost redirect only certain URIs to ssl
server {
include listen_80;
server_name www.example.com;
root /home/chris/public_html/www.example.com/public;
access_log /home/chris/public_html/www.example.com/logs/access.log;
error_log /home/chris/public_html/www.example.com/logs/error.log;
location ~ /\.git {
deny all;
}
location / {
# force ssl for login and admin pages
rewrite ^/(admin|auth)(.*) https://$host$request_uri?;
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_pass php;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment