Skip to content

Instantly share code, notes, and snippets.

@sanguis
Forked from anonymous/gist:9096203
Created February 19, 2014 16:55
Show Gist options
  • Save sanguis/9096265 to your computer and use it in GitHub Desktop.
Save sanguis/9096265 to your computer and use it in GitHub Desktop.
### Password Protect /administrator area
location ~ /administrator/.* {
auth_basic "Restricted";
auth_basic_user_file /var/www/prod.pac.cr/passwd;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# With php5-cgi alone:
#fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# With php5-cgi alone:
#fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment