From e0e7b074688a527e9c4bdfa77f90a2c8fd62107f Mon Sep 17 00:00:00 2001 From: tanshu Date: Fri, 3 Apr 2020 09:24:02 +0530 Subject: [PATCH] Initial rough commit to save the code before cleanup --- .gitignore | 2 + bitwarden/files/nginx.conf.j2 | 30 ++++++ bitwarden/playbook.yml | 51 +++++++++++ bitwarden/readme.md | 46 ++++++++++ bitwarden/vars/default.yml | 9 ++ gitea/files/nginx.conf.j2 | 17 ++++ gitea/playbook-pg.yml | 62 +++++++++++++ gitea/playbook.yml | 54 +++++++++++ gitea/readme.md | 46 ++++++++++ gitea/vars/default-pg.yml | 15 +++ gitea/vars/default.yml | 9 ++ nextcloud/files/nginx.conf.j2 | 16 ++++ nextcloud/playbook.yml | 71 ++++++++++++++ nextcloud/readme.md | 46 ++++++++++ nextcloud/vars/default.yml | 11 +++ nextcloud/web/Dockerfile | 3 + nextcloud/web/nginx.conf | 168 ++++++++++++++++++++++++++++++++++ postgres/files/info.php.j2 | 2 + postgres/files/nginx.conf.j2 | 19 ++++ postgres/playbook.yml | 32 +++++++ postgres/readme.md | 46 ++++++++++ postgres/vars/default.yml | 7 ++ redis/playbook.yml | 18 ++++ redis/readme.md | 46 ++++++++++ redis/vars/default.yml | 4 + trilium/files/nginx.conf.j2 | 12 +++ trilium/playbook.yml | 48 ++++++++++ trilium/readme.md | 46 ++++++++++ trilium/vars/default.yml | 6 ++ 29 files changed, 942 insertions(+) create mode 100644 .gitignore create mode 100644 bitwarden/files/nginx.conf.j2 create mode 100755 bitwarden/playbook.yml create mode 100644 bitwarden/readme.md create mode 100644 bitwarden/vars/default.yml create mode 100644 gitea/files/nginx.conf.j2 create mode 100755 gitea/playbook-pg.yml create mode 100755 gitea/playbook.yml create mode 100644 gitea/readme.md create mode 100644 gitea/vars/default-pg.yml create mode 100644 gitea/vars/default.yml create mode 100644 nextcloud/files/nginx.conf.j2 create mode 100755 nextcloud/playbook.yml create mode 100644 nextcloud/readme.md create mode 100644 nextcloud/vars/default.yml create mode 100644 nextcloud/web/Dockerfile create mode 100644 nextcloud/web/nginx.conf create mode 100644 postgres/files/info.php.j2 create mode 100644 postgres/files/nginx.conf.j2 create mode 100755 postgres/playbook.yml create mode 100644 postgres/readme.md create mode 100644 postgres/vars/default.yml create mode 100755 redis/playbook.yml create mode 100644 redis/readme.md create mode 100644 redis/vars/default.yml create mode 100644 trilium/files/nginx.conf.j2 create mode 100755 trilium/playbook.yml create mode 100644 trilium/readme.md create mode 100644 trilium/vars/default.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df5c4e1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.retry +.idea diff --git a/bitwarden/files/nginx.conf.j2 b/bitwarden/files/nginx.conf.j2 new file mode 100644 index 0000000..f9928b6 --- /dev/null +++ b/bitwarden/files/nginx.conf.j2 @@ -0,0 +1,30 @@ +server { + + listen 80; + server_name {{ http_host }}; + + # Allow large attachments + client_max_body_size 128M; + + location / { + + proxy_pass http://localhost:8080; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /notifications/hub { + + proxy_pass http://localhost:3012; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + } + + location /notifications/hub/negotiate { + + proxy_pass http://localhost:8080; + } +} + diff --git a/bitwarden/playbook.yml b/bitwarden/playbook.yml new file mode 100755 index 0000000..f899bca --- /dev/null +++ b/bitwarden/playbook.yml @@ -0,0 +1,51 @@ +################################################# +# DO Community Playbooks: Docker +################################################# +--- +- hosts: all + become: true + vars_files: + - vars/default.yml + + tasks: + - name: Pull Bitwarden RS Postgres image + docker_image: + name: "{{ container_image }}" + source: pull + + - name: Create bitwarden container + docker_container: + name: "{{ container_name }}" + image: "{{ container_image }}" + state: started + env: + DATABASE_URL: "{{ db_url }}" + links: "postgres:db" + published_ports: + - 8080:80 + - 3012:3012 + volumes: + - /var/lib/bitwarden/data:/data/ + + - name: Sets Nginx conf file for bitwarden + template: + src: "files/nginx.conf.j2" + dest: "/etc/nginx/sites-available/{{ http_conf }}" + + - name: Enables new site + file: + src: "/etc/nginx/sites-available/{{ http_conf }}" + dest: "/etc/nginx/sites-enabled/{{ http_conf }}" + state: link + notify: Reload Nginx + + handlers: + - name: Reload Nginx + service: + name: nginx + state: reloaded + + - name: Restart Nginx + service: + name: nginx + state: restarted diff --git a/bitwarden/readme.md b/bitwarden/readme.md new file mode 100644 index 0000000..f6d7ecc --- /dev/null +++ b/bitwarden/readme.md @@ -0,0 +1,46 @@ +# Docker on Ubuntu 18.04 + +This playbook will install Docker an Ubuntu 18.04 machine, as explained in the guide on +[How to Use Ansible to Install and Set Up Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04). +A number of containers will be created with the options specified in the `vars/default.yml` variable file. + +## Settings + +- `create_containers`: number of containers to create. +- `default_container_name`: default name for new containers. +- `default_container_image`: default image for new containers. +- `default_container_command`: default command to run on new containers. + + +## Running this Playbook + +Quick Steps: + +### 1. Obtain the playbook +```shell +git clone https://github.com/do-community/ansible-playbooks.git +cd ansible-playbooks/docker_ubuntu1804 +``` + +### 2. Customize Options + +```shell +nano vars/default.yml +``` + +```yml +#vars/default.yml +--- +create_containers: 4 +default_container_name: docker +default_container_image: ubuntu +default_container_command: sleep 1d +``` + +### 3. Run the Playbook + +```command +ansible-playbook -l [target] -i [inventory file] -u [remote user] playbook.yml +``` + +For more information on how to run this Ansible setup, please check this guide: [How to Use Ansible to Install and Set Up Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04). \ No newline at end of file diff --git a/bitwarden/vars/default.yml b/bitwarden/vars/default.yml new file mode 100644 index 0000000..f596613 --- /dev/null +++ b/bitwarden/vars/default.yml @@ -0,0 +1,9 @@ +--- +http_host: "vault.tanshu.com" +http_conf: "vault.tanshu.com.conf" + +container_name: bitwarden +container_image: bitwardenrs/server-postgresql + +db_url: postgresql://postgres:123456@db:5432/bitwarden + diff --git a/gitea/files/nginx.conf.j2 b/gitea/files/nginx.conf.j2 new file mode 100644 index 0000000..8d9cfad --- /dev/null +++ b/gitea/files/nginx.conf.j2 @@ -0,0 +1,17 @@ +server { + + listen 80; + server_name {{ http_host }}; + +# location /_/static { + +# alias /path/to/gitea/public; +# } + + location / { + + proxy_pass http://localhost:3000; + } + +} + diff --git a/gitea/playbook-pg.yml b/gitea/playbook-pg.yml new file mode 100755 index 0000000..25ea050 --- /dev/null +++ b/gitea/playbook-pg.yml @@ -0,0 +1,62 @@ +################################################# +# DO Community Playbooks: Docker +################################################# +--- +- hosts: all + become: true + vars_files: + - vars/default.yml + + tasks: + - name: Add the user 'git' with a specific uid and a primary group of 'admin' + user: + name: "{{ user }}" + comment: Git user + create_home: no + + - name: Pull Gitea image + docker_image: + name: "{{ container_image }}" + source: pull + + - getent: + database: passwd + key: "{{ user }}" + split: ":" + + - name: Create gitea container + docker_container: + name: "{{ container_name }}" + image: "{{ container_image }}" + state: started + env: + USER_UID: "{{ getent_passwd[user][1] }}" + USER_GID: "{{ getent_passwd[user][2] }}" + DB_TYPE: "{{ db_type }}" + DB_HOST: "{{ db_host }}" + DB_NAME: "{{ db_name }}" + DB_USER: "{{ db_user }}" + DB_PASSWD: "{{ db_password }}" + ROOT_URL: "{{ http_url }}" + links: + - "postgres:db" + published_ports: + - "3000:3000" + - "127.0.0.1:2222:22" + volumes: + - /var/lib/gitea:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + +# - name: Sets Nginx conf file for gitea +# template: +# src: "files/nginx.conf.j2" +# dest: "/etc/nginx/sites-available/{{ http_conf }}" + +# - name: Enables new site +# file: +# src: "/etc/nginx/sites-available/{{ http_conf }}" +# dest: "/etc/nginx/sites-enabled/{{ http_conf }}" +# state: link +# notify: Reload Nginx + diff --git a/gitea/playbook.yml b/gitea/playbook.yml new file mode 100755 index 0000000..75df2ea --- /dev/null +++ b/gitea/playbook.yml @@ -0,0 +1,54 @@ +################################################# +# DO Community Playbooks: Docker +################################################# +--- +- hosts: all + become: true + vars_files: + - vars/default.yml + + tasks: + - name: Add the user 'git' with a specific uid and a primary group of 'admin' + user: + name: "{{ user }}" + comment: Git user + create_home: no + + - name: Pull Gitea image + docker_image: + name: "{{ container_image }}" + source: pull + + - getent: + database: passwd + key: "{{ user }}" + split: ":" + + - name: Create gitea container + docker_container: + name: "{{ container_name }}" + image: "{{ container_image }}" + state: started + env: + USER_UID: "{{ getent_passwd[user][1] }}" + USER_GID: "{{ getent_passwd[user][2] }}" + published_ports: + - "3000:3000" + - "127.0.0.1:2222:22" + volumes: + - /var/lib/gitea:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + +# - name: Sets Nginx conf file for gitea +# template: +# src: "files/nginx.conf.j2" +# dest: "/etc/nginx/sites-available/{{ http_conf }}" + +# - name: Enables new site +# file: +# src: "/etc/nginx/sites-available/{{ http_conf }}" +# dest: "/etc/nginx/sites-enabled/{{ http_conf }}" +# state: link +# notify: Reload Nginx + diff --git a/gitea/readme.md b/gitea/readme.md new file mode 100644 index 0000000..f6d7ecc --- /dev/null +++ b/gitea/readme.md @@ -0,0 +1,46 @@ +# Docker on Ubuntu 18.04 + +This playbook will install Docker an Ubuntu 18.04 machine, as explained in the guide on +[How to Use Ansible to Install and Set Up Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04). +A number of containers will be created with the options specified in the `vars/default.yml` variable file. + +## Settings + +- `create_containers`: number of containers to create. +- `default_container_name`: default name for new containers. +- `default_container_image`: default image for new containers. +- `default_container_command`: default command to run on new containers. + + +## Running this Playbook + +Quick Steps: + +### 1. Obtain the playbook +```shell +git clone https://github.com/do-community/ansible-playbooks.git +cd ansible-playbooks/docker_ubuntu1804 +``` + +### 2. Customize Options + +```shell +nano vars/default.yml +``` + +```yml +#vars/default.yml +--- +create_containers: 4 +default_container_name: docker +default_container_image: ubuntu +default_container_command: sleep 1d +``` + +### 3. Run the Playbook + +```command +ansible-playbook -l [target] -i [inventory file] -u [remote user] playbook.yml +``` + +For more information on how to run this Ansible setup, please check this guide: [How to Use Ansible to Install and Set Up Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04). \ No newline at end of file diff --git a/gitea/vars/default-pg.yml b/gitea/vars/default-pg.yml new file mode 100644 index 0000000..dca6434 --- /dev/null +++ b/gitea/vars/default-pg.yml @@ -0,0 +1,15 @@ +--- +http_host: "git.tanshu.com" +http_conf: "git.tanshu.com.conf" +http_url: "https://git.tanshu.com" + +container_name: gitea +container_image: gitea/gitea + +user: 'git' + +db_type: 'postgres' +db_host: 'db:5432' +db_name: 'gitea' +db_user: 'postgres' +db_password: '123456' diff --git a/gitea/vars/default.yml b/gitea/vars/default.yml new file mode 100644 index 0000000..307a72d --- /dev/null +++ b/gitea/vars/default.yml @@ -0,0 +1,9 @@ +--- +http_host: "git.tanshu.com" +http_conf: "git.tanshu.com.conf" +http_url: "https://git.tanshu.com" + +container_name: gitea +container_image: gitea/gitea + +user: 'git' diff --git a/nextcloud/files/nginx.conf.j2 b/nextcloud/files/nginx.conf.j2 new file mode 100644 index 0000000..ee9074e --- /dev/null +++ b/nextcloud/files/nginx.conf.j2 @@ -0,0 +1,16 @@ +server { + + listen 80; + server_name {{ http_host }}; + + location / { + + proxy_set_header Host $host:$server_port; + proxy_set_header X-Scheme $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always; + proxy_pass http://localhost:9080; + } + +} + diff --git a/nextcloud/playbook.yml b/nextcloud/playbook.yml new file mode 100755 index 0000000..cdecda8 --- /dev/null +++ b/nextcloud/playbook.yml @@ -0,0 +1,71 @@ +################################################# +# DO Community Playbooks: Docker +################################################# +--- +- hosts: all + become: true + vars_files: + - vars/default.yml + + tasks: + - name: Pull Nextcloud image + docker_image: + name: "{{ container_image }}" + source: pull + + - name: Copy dockerfile + synchronize: src=web dest=/tmp + + - name: Build nginx webserver image + docker_image: + name: nextcloud-web + build: + path: /tmp/web/ + dockerfile: /tmp/web/Dockerfile + pull: yes + state: present + source: build + + - name: Create Nextcloud container + docker_container: + name: "{{ container_name }}" + image: "{{ container_image }}" + state: started + env: + POSTGRES_DB: "{{ db_name }}" + POSTGRES_USER: "{{ db_user }}" + POSTGRES_PASSWORD: "{{ db_pass }}" + POSTGRES_HOST: "{{ db_host }}" + REDIS_HOST: "redis" + links: + - "postgres:db" + - "redis:redis" + published_ports: + - "9000:9000" + volumes: + - /var/lib/nextcloud:/var/www/html + - /dev/urandom:/dev/urandom:ro + + - name: Create webserver container + docker_container: + name: cloud-web + image: nextcloud-web + state: started + links: + - "cloud:app" + published_ports: + - "9080:80" + volumes: + - /var/lib/nextcloud:/var/www/html:ro + +# - name: Sets Nginx conf file for nextcloud +# template: +# src: "files/nginx.conf.j2" +# dest: "/etc/nginx/sites-available/{{ http_conf }}" + +# - name: Enables new site +# file: +# src: "/etc/nginx/sites-available/{{ http_conf }}" +# dest: "/etc/nginx/sites-enabled/{{ http_conf }}" +# state: link + diff --git a/nextcloud/readme.md b/nextcloud/readme.md new file mode 100644 index 0000000..f6d7ecc --- /dev/null +++ b/nextcloud/readme.md @@ -0,0 +1,46 @@ +# Docker on Ubuntu 18.04 + +This playbook will install Docker an Ubuntu 18.04 machine, as explained in the guide on +[How to Use Ansible to Install and Set Up Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04). +A number of containers will be created with the options specified in the `vars/default.yml` variable file. + +## Settings + +- `create_containers`: number of containers to create. +- `default_container_name`: default name for new containers. +- `default_container_image`: default image for new containers. +- `default_container_command`: default command to run on new containers. + + +## Running this Playbook + +Quick Steps: + +### 1. Obtain the playbook +```shell +git clone https://github.com/do-community/ansible-playbooks.git +cd ansible-playbooks/docker_ubuntu1804 +``` + +### 2. Customize Options + +```shell +nano vars/default.yml +``` + +```yml +#vars/default.yml +--- +create_containers: 4 +default_container_name: docker +default_container_image: ubuntu +default_container_command: sleep 1d +``` + +### 3. Run the Playbook + +```command +ansible-playbook -l [target] -i [inventory file] -u [remote user] playbook.yml +``` + +For more information on how to run this Ansible setup, please check this guide: [How to Use Ansible to Install and Set Up Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04). \ No newline at end of file diff --git a/nextcloud/vars/default.yml b/nextcloud/vars/default.yml new file mode 100644 index 0000000..6051efa --- /dev/null +++ b/nextcloud/vars/default.yml @@ -0,0 +1,11 @@ +--- +http_host: "cloud.hopsngrains.com" +http_conf: "cloud.hopsngrains.com.conf" + +container_name: cloud +container_image: nextcloud:fpm-alpine + +db_name: "nextcloud" +db_user: "postgres" +db_pass: "123456" +db_host: "db" diff --git a/nextcloud/web/Dockerfile b/nextcloud/web/Dockerfile new file mode 100644 index 0000000..9e620af --- /dev/null +++ b/nextcloud/web/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine + +COPY nginx.conf /etc/nginx/nginx.conf diff --git a/nextcloud/web/nginx.conf b/nextcloud/web/nginx.conf new file mode 100644 index 0000000..5eedca5 --- /dev/null +++ b/nextcloud/web/nginx.conf @@ -0,0 +1,168 @@ +worker_processes auto; + +error_log /var/log/nginx/error.log warn; +pid /var/run/nginx.pid; + + +events { + worker_connections 1024; +} + + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + #tcp_nopush on; + + keepalive_timeout 65; + + #gzip on; + + upstream php-handler { + server app:9000; + } + + server { + listen 80; + + # Add headers to serve security related headers + # Before enabling Strict-Transport-Security headers please read into this + # topic first. + #add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always; + # + # WARNING: Only add the preload option once you read about + # the consequences in https://hstspreload.org/. This option + # will add the domain to a hardcoded list that is shipped + # in all major browsers and getting removed from this list + # could take several months. + add_header Referrer-Policy "no-referrer" always; + add_header X-Content-Type-Options "nosniff" always; + add_header X-Download-Options "noopen" always; + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-Permitted-Cross-Domain-Policies "none" always; + add_header X-Robots-Tag "none" always; + add_header X-XSS-Protection "1; mode=block" always; + + # Remove X-Powered-By, which is an information leak + fastcgi_hide_header X-Powered-By; + + # Path to the root of your installation + root /var/www/html; + + location = /robots.txt { + allow all; + log_not_found off; + access_log off; + } + + # The following 2 rules are only needed for the user_webfinger app. + # Uncomment it if you're planning to use this app. + #rewrite ^/.well-known/host-meta /public.php?service=host-meta last; + #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last; + + # The following rule is only needed for the Social app. + # Uncomment it if you're planning to use this app. + #rewrite ^/.well-known/webfinger /public.php?service=webfinger last; + + location = /.well-known/carddav { + return 301 $http_x_scheme://$http_host/remote.php/dav; + } + + location = /.well-known/caldav { + return 301 $http_x_scheme://$http_host/remote.php/dav; + } + + # set max upload size + client_max_body_size 10G; + fastcgi_buffers 64 4K; + + # Enable gzip but do not remove ETag headers + gzip on; + gzip_vary on; + gzip_comp_level 4; + gzip_min_length 256; + gzip_proxied expired no-cache no-store private no_last_modified no_etag auth; + gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy; + + # Uncomment if your server is build with the ngx_pagespeed module + # This module is currently not supported. + #pagespeed off; + + location / { + rewrite ^ /index.php; + } + + location ~ ^\/(?:build|tests|config|lib|3rdparty|templates|data)\/ { + deny all; + } + location ~ ^\/(?:\.|autotest|occ|issue|indie|db_|console) { + deny all; + } + + location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+)\.php(?:$|\/) { + fastcgi_split_path_info ^(.+?\.php)(\/.*|)$; + set $path_info $fastcgi_path_info; + try_files $fastcgi_script_name =404; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_param PATH_INFO $path_info; + # fastcgi_param HTTPS on; + + # Avoid sending the security headers twice + fastcgi_param modHeadersAvailable true; + + # Enable pretty urls + fastcgi_param front_controller_active true; + fastcgi_pass php-handler; + fastcgi_intercept_errors on; + fastcgi_request_buffering off; + } + + location ~ ^\/(?:updater|oc[ms]-provider)(?:$|\/) { + try_files $uri/ =404; + index index.php; + } + + # Adding the cache control header for js, css and map files + # Make sure it is BELOW the PHP block + location ~ \.(?:css|js|woff2?|svg|gif|map)$ { + try_files $uri /index.php$request_uri; + add_header Cache-Control "public, max-age=15778463"; + # Add headers to serve security related headers (It is intended to + # have those duplicated to the ones above) + # Before enabling Strict-Transport-Security headers please read into + # this topic first. + #add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always; + # + # WARNING: Only add the preload option once you read about + # the consequences in https://hstspreload.org/. This option + # will add the domain to a hardcoded list that is shipped + # in all major browsers and getting removed from this list + # could take several months. + add_header Referrer-Policy "no-referrer" always; + add_header X-Content-Type-Options "nosniff" always; + add_header X-Download-Options "noopen" always; + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-Permitted-Cross-Domain-Policies "none" always; + add_header X-Robots-Tag "none" always; + add_header X-XSS-Protection "1; mode=block" always; + + # Optional: Don't log access to assets + access_log off; + } + + location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ { + try_files $uri /index.php$request_uri; + # Optional: Don't log access to other assets + access_log off; + } + } +} diff --git a/postgres/files/info.php.j2 b/postgres/files/info.php.j2 new file mode 100644 index 0000000..61ace19 --- /dev/null +++ b/postgres/files/info.php.j2 @@ -0,0 +1,2 @@ +