]> gitweb.fluxo.info Git - puppet-nginx.git/commitdiff
Reference some extra packages
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 16 Oct 2017 12:30:46 +0000 (10:30 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 16 Oct 2017 12:30:46 +0000 (10:30 -0200)
manifests/cache.pp
manifests/ssl.pp

index 2f13a94e64cfe0e0b3f4fea0cb9c74f440a27b3e..95038e786fdf0c2aa652a06433a8215e46fdb53f 100644 (file)
@@ -8,6 +8,11 @@ class nginx::cache(
     mode    => '0700',
   }
 
+  # See https://github.com/FRiCKLE/ngx_cache_purge
+  #package { 'libnginx-mod-http-cache-purge':
+  #  ensure => present,
+  #}
+
   #nginx::config { 'cache':
   #  value => "proxy_cache_path /var/cache/nginx/ levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=1g;\n",
   #}
index 8dc3407dbdadb57f1386ad76328a8349c8c4b004..d925e36e5c0d2b6b1d4c114cec6294e0dea98b41 100644 (file)
@@ -9,6 +9,10 @@ class nginx::ssl(
     post_hook => '/usr/sbin/service nginx start',
   }
 
+  #package { 'python-certbot-nginx':
+  #  ensure: present,
+  #}
+
   # See https://weakdh.org/
   ssl::dhparams { 'nginx-2048':
     notify  => Service['nginx'],