summaryrefslogtreecommitdiff
path: root/etc/nginx/apps/drupal/drupal_install.conf
blob: 1f4f11bf2f96e6eae581d23b5fc976f34964e567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- mode: nginx; mode: flyspell-prog;  ispell-local-dictionary: "american" -*-

### Directives for installing drupal. This is for drupal 6 and 7.

location = /install.php {
    auth_basic "Restricted Access"; # auth realm
    auth_basic_user_file .htpasswd-users; # htpasswd file
    fastcgi_pass phpcgi;
}

## This is for drupal 8. There's a new location for the install file.
location = /core/install.php {
    auth_basic "Restricted Access"; # auth realm
    auth_basic_user_file .htpasswd-users; # htpasswd file
    fastcgi_pass phpcgi;
}