aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/services/web-servers
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-06-15 13:08:48 +0200
committerGitHub <noreply@github.com>2019-06-15 13:08:48 +0200
commit395da1280e8146e47eb0dc1c9bc10284fe0334f1 (patch)
tree12053b9a3344c9fa6f01f68ac85657e50ca9f91a /nixos/modules/services/web-servers
parent3a61b882690c949773fea6cecb1fc961f9119edd (diff)
parent3fabe1accbf44059caa05790c2d1afa0f32dd447 (diff)
Merge pull request #63100 from aanderse/phabricator-remove
drop unmaintained phabricator package, service, and httpd subservice
Diffstat (limited to 'nixos/modules/services/web-servers')
-rw-r--r--nixos/modules/services/web-servers/apache-httpd/phabricator.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/nixos/modules/services/web-servers/apache-httpd/phabricator.nix b/nixos/modules/services/web-servers/apache-httpd/phabricator.nix
deleted file mode 100644
index efd4a7b5f0f..00000000000
--- a/nixos/modules/services/web-servers/apache-httpd/phabricator.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
- phabricatorRoot = pkgs.phabricator;
-in {
-
- enablePHP = true;
- extraApacheModules = [ "mod_rewrite" ];
- DocumentRoot = "${phabricatorRoot}/phabricator/webroot";
-
- options = {
- git = mkOption {
- default = true;
- description = "Enable git repositories.";
- };
- mercurial = mkOption {
- default = true;
- description = "Enable mercurial repositories.";
- };
- subversion = mkOption {
- default = true;
- description = "Enable subversion repositories.";
- };
- };
-
- extraConfig = ''
- DocumentRoot ${phabricatorRoot}/phabricator/webroot
-
- RewriteEngine on
- RewriteRule ^/rsrc/(.*) - [L,QSA]
- RewriteRule ^/favicon.ico - [L,QSA]
- RewriteRule ^(.*)$ /index.php?__path__=$1 [B,L,QSA]
- '';
-
- extraServerPath = [
- "${pkgs.which}"
- "${pkgs.diffutils}"
- ] ++
- (if config.mercurial then ["${pkgs.mercurial}"] else []) ++
- (if config.subversion then ["${pkgs.subversion.out}"] else []) ++
- (if config.git then ["${pkgs.git}"] else []);
-
- startupScript = pkgs.writeScript "activatePhabricator" ''
- mkdir -p /var/repo
- chown wwwrun /var/repo
- '';
-
-}