mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 11:45:32 +02:00
Different optimations
This commit is contained in:
parent
39668a428c
commit
7ae3c6cc51
@ -77,3 +77,7 @@ defaults_redirect_domain_mappings:
|
|||||||
- { source: "taiga.{{primary_domain}}", target: "{{domains.taiga}}" }
|
- { source: "taiga.{{primary_domain}}", target: "{{domains.taiga}}" }
|
||||||
- { source: "videos.{{primary_domain}}", target: "{{domains.peertube}}" }
|
- { source: "videos.{{primary_domain}}", target: "{{domains.peertube}}" }
|
||||||
- { source: "wordpress.{{primary_domain}}", target: "{{domains.wordpress[0]}}" }
|
- { source: "wordpress.{{primary_domain}}", target: "{{domains.wordpress[0]}}" }
|
||||||
|
|
||||||
|
# Domains which are deprecated and should be cleaned up
|
||||||
|
deprecated_domains: []
|
||||||
|
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
when:
|
when:
|
||||||
- users[mailu_user].mailu_token is not defined
|
- users[mailu_user].mailu_token is not defined
|
||||||
- mailu_user_existing_token is not none
|
- mailu_user_existing_token is not none
|
||||||
|
- mailu_user_existing_token.id is defined
|
||||||
register: mailu_token_delete
|
register: mailu_token_delete
|
||||||
changed_when: mailu_token_delete.rc == 0
|
changed_when: mailu_token_delete.rc == 0
|
||||||
|
|
||||||
|
@ -23,3 +23,5 @@ galaxy_info:
|
|||||||
repository: https://s.veen.world/cymais
|
repository: https://s.veen.world/cymais
|
||||||
issue_tracker_url: https://s.veen.world/cymaisissues
|
issue_tracker_url: https://s.veen.world/cymaisissues
|
||||||
documentation: https://s.veen.world/cymais
|
documentation: https://s.veen.world/cymais
|
||||||
|
dependencies:
|
||||||
|
- nginx
|
@ -1,3 +1,4 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
- nginx
|
- nginx
|
||||||
|
- nginx-domains-cleanup
|
||||||
- letsencrypt
|
- letsencrypt
|
@ -3,7 +3,7 @@
|
|||||||
pacman:
|
pacman:
|
||||||
name:
|
name:
|
||||||
- nginx
|
- nginx
|
||||||
- nginx-mod-stream # Enable Stream support
|
- nginx-mod-stream
|
||||||
state: present
|
state: present
|
||||||
notify: restart nginx
|
notify: restart nginx
|
||||||
when: run_once_nginx is not defined
|
when: run_once_nginx is not defined
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
load_module /usr/lib/nginx/modules/ngx_stream_module.so; # Enable Stream support
|
load_module /usr/lib/nginx/modules/ngx_stream_module.so;
|
||||||
worker_processes auto;
|
worker_processes auto;
|
||||||
|
|
||||||
events
|
events
|
||||||
|
Loading…
x
Reference in New Issue
Block a user