]> Untitled Git - lemmy.git/commitdiff
Revert "Deploy multiple Lemmy instances to the same server (ref #474)"
authorDessalines <tyhou13@gmx.com>
Sat, 28 Mar 2020 22:18:20 +0000 (18:18 -0400)
committerDessalines <tyhou13@gmx.com>
Sat, 28 Mar 2020 22:18:20 +0000 (18:18 -0400)
This reverts commit aa341933da04a21f9bb342b3b2840ee2acde8a94.

.gitignore
ansible/lemmy_dev.yml
ansible/templates/docker-compose.yml
ansible/templates/nginx.conf
ansible/uninstall.yml

index ef03389c75c9108ddbeb6780ef6f7a1df87863b2..9f7fa1e3c6930299976d9bab212b53ec509d4d9c 100644 (file)
@@ -1,7 +1,6 @@
 ansible/inventory
 ansible/inventory_dev
 ansible/passwords/
-ansible/vars/
 docker/lemmy_mine.hjson
 docker/dev/env_deploy.sh
 build/
index 1d8e40aeea8a4be991e9b4925eaeb1876a34ce4b..e9b8364f386a85357ca89d16de83f15ec650bfcd 100644 (file)
     - setup: # gather facts
 
   tasks:
-  # TODO: this task is running on all hosts at the same time so there is a race condition
-  - name: xxx
-    shell: |
-      mkdir -p "vars/{{ inventory_hostname }}/"
-      if [ ! -f "vars/{{ inventory_hostname }}/port_counter" ]; then
-        if [ -f "vars/max_port_counter" ]; then
-          MAX_PORT=$(cat vars/max_port_counter)
-        else
-         MAX_PORT=8000
-        fi
-        OUR_PORT=$(expr $MAX_PORT + 10)
-        echo $OUR_PORT > "vars/{{ inventory_hostname }}/port_counter"
-        echo $OUR_PORT > "vars/max_port_counter"
-      fi
-      cat "vars/{{ inventory_hostname }}/port_counter"
-    args:
-      executable: /bin/bash
-    delegate_to: localhost
-    register: lemmy_port
-
-  - set_fact: "lemmy_port={{ lemmy_port.stdout_lines[0] }}"
-  - set_fact: "pictshare_port={{ lemmy_port|int + 1 }}"
-  - set_fact: "iframely_port={{ lemmy_port|int + 2 }}"
-  - debug:
-      msg: "lemmy_port={{ lemmy_port }} pictshare_port={{pictshare_port}} iframely_port={{iframely_port}}"
-
   - name: install dependencies
     apt:
       pkg: ['nginx', 'docker-compose', 'docker.io', 'certbot', 'python-certbot-nginx']
     args:
       creates: '/etc/letsencrypt/live/{{domain}}/privkey.pem'
 
-  # TODO: need to use different path per domain
   - name: create lemmy folder
     file: path={{item.path}} state=directory
     with_items:
-      - { path: '/lemmy/{{ domain }}/' }
-      - { path: '/lemmy/{{ domain }}/volumes/' }
-      - { path: '/var/cache/lemmy/{{ domain }}/' }
+      - { path: '/lemmy/' }
+      - { path: '/lemmy/volumes/' }
 
   - block:
     - name:  add template files
       template: src={{item.src}} dest={{item.dest}} mode={{item.mode}}
       with_items:
-        - { src: 'templates/docker-compose.yml', dest: '/lemmy/{{domain}}/docker-compose.yml', mode: '0600' }
-        - { src: 'templates/nginx.conf', dest: '/etc/nginx/sites-enabled/lemmy-{{ domain }}.conf', mode: '0644' }
-        - { src: '../docker/iframely.config.local.js', dest: '/lemmy/{{ domain }}/iframely.config.local.js', mode: '0600' }
+        - { src: 'templates/docker-compose.yml', dest: '/lemmy/docker-compose.yml', mode: '0600' }
+        - { src: 'templates/nginx.conf', dest: '/etc/nginx/sites-enabled/lemmy.conf', mode: '0644' }
+        - { src: '../docker/iframely.config.local.js', dest: '/lemmy/iframely.config.local.js', mode: '0600' }
 
     - name:  add config file (only during initial setup)
-      template: src='templates/config.hjson' dest='/lemmy/{{domain}}/lemmy.hjson' mode='0600' force='no' owner='1000' group='1000'
+      template: src='templates/config.hjson' dest='/lemmy/lemmy.hjson' mode='0600' force='no' owner='1000' group='1000'
     vars:
-      # TODO: these paths are changed, need to move the files
-      # TODO: not sure what to call the local var folder, its not mentioned in the ansible docs
-      postgres_password: "{{ lookup('password', 'vars/{{ inventory_hostname }}/postgres_password chars=ascii_letters,digits') }}"
-      jwt_password: "{{ lookup('password', 'vars/{{ inventory_hostname }}/jwt_password chars=ascii_letters,digits') }}"
+      postgres_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/postgres chars=ascii_letters,digits') }}"
+      jwt_password: "{{ lookup('password', 'passwords/{{ inventory_hostname }}/jwt chars=ascii_letters,digits') }}"
 
   - name: build the dev docker image
     local_action: shell cd .. && sudo docker build . -f docker/dev/Dockerfile -t lemmy:dev
   # be a problem for testing
   - name: start docker-compose
     docker_compose:
-      project_src: "/lemmy/{{ domain }}/"
+      project_src: /lemmy/
       state: present
       recreate: always
     ignore_errors: yes
   - name: certbot renewal cronjob
     cron:
       special_time=daily
-      name=certbot-renew-lemmy-{{ domain }}
+      name=certbot-renew-lemmy
       user=root
       job="certbot certonly --nginx -d '{{ domain }}' --deploy-hook 'nginx -s reload'"
index d6afd2532d9b809e395405f6ed08e8ac6b39223d..a4d54f6d8d71efab31e3d10d9966ada61e46e336 100644 (file)
@@ -4,7 +4,7 @@ services:
   lemmy:
     image: {{ lemmy_docker_image }}
     ports:
-      - "127.0.0.1:{{ lemmy_port }}:8536"
+      - "127.0.0.1:8536:8536"
     restart: always
     environment:
       - RUST_LOG=error
@@ -28,7 +28,7 @@ services:
   pictshare:
     image: shtripok/pictshare:latest
     ports:
-      - "127.0.0.1:{{ pictshare_port }}:80"
+      - "127.0.0.1:8537:80"
     volumes:
       - ./volumes/pictshare:/usr/share/nginx/html/data
     restart: always
@@ -36,7 +36,7 @@ services:
   iframely:
     image: dogbin/iframely:latest
     ports:
-      - "127.0.0.1:{{ iframely_port }}:80"
+      - "127.0.0.1:8061:80"
     volumes:
       - ./iframely.config.local.js:/iframely/config.local.js:ro
     restart: always
index 003720bcbef2e955dc8e4e1be905dbc10ffb6b93..04e5a6436dc4b5ebc53a8dc47f53608051006c9f 100644 (file)
@@ -1,4 +1,4 @@
-proxy_cache_path /var/cache/lemmy/{{ domain }} levels=1:2 keys_zone=lemmy_frontend_cache_{{ domain }}:10m max_size=100m use_temp_path=off;
+proxy_cache_path /var/cache/lemmy_frontend levels=1:2 keys_zone=lemmy_frontend_cache:10m max_size=100m                 use_temp_path=off;
 
 server {
     listen 80;
@@ -52,7 +52,7 @@ server {
     client_max_body_size 50M;
 
     location / {
-        proxy_pass http://0.0.0.0:{{ lemmy_port }};
+        proxy_pass http://0.0.0.0:8536;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header Host $host;
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -63,7 +63,7 @@ server {
         proxy_set_header Connection "upgrade";
 
         # Proxy Cache
-        proxy_cache             lemmy_frontend_cache_{{ domain }};
+        proxy_cache             lemmy_frontend_cache;
         proxy_cache_use_stale   error timeout http_500 http_502 http_503 http_504;
         proxy_cache_revalidate  on;
         proxy_cache_lock        on;
@@ -71,7 +71,7 @@ server {
     }    
 
     location /pictshare/ {
-      proxy_pass http://0.0.0.0:{{ pictshare_port }}/;
+      proxy_pass http://0.0.0.0:8537/;
       proxy_set_header X-Real-IP $remote_addr;
       proxy_set_header Host $host;
       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -82,7 +82,7 @@ server {
     }
 
     location /iframely/ {
-      proxy_pass http://0.0.0.0:{{ iframely_port }}/;
+      proxy_pass http://0.0.0.0:8061/;
       proxy_set_header X-Real-IP $remote_addr;
       proxy_set_header Host $host;
       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -98,6 +98,6 @@ map $remote_addr $remote_addr_anon {
   ::1                         $remote_addr;
   default                     0.0.0.0;
 }
-log_format main_{{ domain }} '$remote_addr_anon - $remote_user [$time_local] "$request" '
+log_format main '$remote_addr_anon - $remote_user [$time_local] "$request" '
 '$status $body_bytes_sent "$http_referer" "$http_user_agent"';
-access_log /var/log/nginx/access.log main_{{ domain }};
+access_log /var/log/nginx/access.log main;
index 08d5316c37f19c261f46287f6061dee7a0069b6e..252c5bd1f7f838c3e523bba2e2c34ee12c98b2df 100644 (file)
 
   - name: stop docker-compose
     docker_compose:
-      project_src: /lemmy/{{domain}}/
+      project_src: /lemmy/
       state: absent
 
   - name: delete data
     file: path={{item.path}} state=absent
     with_items:
-      - { path: '/lemmy/{{domain}}/' }
-      - { path: '/etc/nginx/sites-enabled/lemmy-{{ domain }}.conf' }
+      - { path: '/lemmy/' }
+      - { path: '/etc/nginx/sites-enabled/lemmy.conf' }
+
+  - name: Remove a volume
+    docker_volume: name={{item.name}} state=absent
+    with_items:
+      - { name: 'lemmy_lemmy_db' }
+      - { name: 'lemmy_lemmy_pictshare' }
+
+  - name: delete entire ecloud folder
+    file: path='/mnt/repo-base/' state=absent
+    when: delete_certs|bool
 
   - name: remove certbot cronjob
     cron: