summaryrefslogtreecommitdiff
path: root/guix/etc/nginx/apps/drupal/drupal_install.conf
diff options
context:
space:
mode:
Diffstat (limited to 'guix/etc/nginx/apps/drupal/drupal_install.conf')
-rw-r--r--guix/etc/nginx/apps/drupal/drupal_install.conf16
1 files changed, 0 insertions, 16 deletions
diff --git a/guix/etc/nginx/apps/drupal/drupal_install.conf b/guix/etc/nginx/apps/drupal/drupal_install.conf
deleted file mode 100644
index 1f4f11b..0000000
--- a/guix/etc/nginx/apps/drupal/drupal_install.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-# -*- 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;
-}