summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-08-07 23:39:33 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-08-07 23:39:33 +0200
commit40bf43ddb47f24a0f0d1acf9763cd9344f814c57 (patch)
tree6361a2a96406d0e32fc0c2164915f23d0ed14c16
parentHopefully fix uwsgi + pgadmin. (diff)
downloadprofiles-40bf43ddb47f24a0f0d1acf9763cd9344f814c57.tar.gz
profiles-40bf43ddb47f24a0f0d1acf9763cd9344f814c57.tar.xz
Remove profiles::pgadmin.
-rw-r--r--manifests/pgadmin.pp39
1 files changed, 0 insertions, 39 deletions
diff --git a/manifests/pgadmin.pp b/manifests/pgadmin.pp
deleted file mode 100644
index 12e6c32..0000000
--- a/manifests/pgadmin.pp
+++ /dev/null
@@ -1,39 +0,0 @@
-class profiles::pgadmin (
- String $server_name = "pgadmin.${fqdn}",
-) {
-
- ensure_packages(['pgadmin4'])
-
- uwsgi::vassal { 'pgAdmin':
- path => '/usr/lib/pgadmin4/web/pgAdmin4.wsgi',
- }
-
- include ::nginx
-
- nginx::resource::server { $server_name:
- ipv6_enable => true,
- ipv6_listen_options => '',
- ssl => false,
- use_default_location => false,
- }
-
- nginx::resource::location { 'pgadmin /':
- server => $server_name,
- location => '/',
- location_allow => [
- '127.0.0.1',
- '::1',
- "${facts['network6']}/${extlib::netmask_to_cidr($facts['netmask6'])}",
- "${facts['network']}/${extlib::netmask_to_cidr($facts['netmask'])}",
- ],
- location_deny => [ 'all' ],
- # TODO centralize this setting
- uwsgi => 'unix:/run/uwsgi/emperor.sock',
- }
-
- # file { '/etc/pgadmin/config_system.py':
- # content => @("EOF")
- # SQLITE_PATH = ${sqlite_path}
- # | EOF
- # }
-}