Compare commits
7 Commits
a3f723885d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
e7dd861d7a
|
|||
|
cb828bdf53
|
|||
|
213e7ed175
|
|||
|
e2e5fdcd67
|
|||
|
39e8f78adf
|
|||
|
ac33f8bf7d
|
|||
|
d3a6b22199
|
@@ -1,6 +1,8 @@
|
|||||||
##############
|
##############
|
||||||
#### base ####
|
#### base ####
|
||||||
##############
|
##############
|
||||||
|
selinux:
|
||||||
|
state: enforcing
|
||||||
|
|
||||||
base_allow_reboot: false
|
base_allow_reboot: false
|
||||||
base_manage_network: false
|
base_manage_network: false
|
||||||
|
|||||||
7
playbooks/podman.yml
Normal file
7
playbooks/podman.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
- name: Install Podman server
|
||||||
|
hosts: "{{ PLAYBOOK_HOST | default('none') }}"
|
||||||
|
become: true
|
||||||
|
roles:
|
||||||
|
- base
|
||||||
|
- proxy
|
||||||
|
- podman
|
||||||
@@ -7,7 +7,9 @@
|
|||||||
|
|
||||||
- name: Reconfigure locales
|
- name: Reconfigure locales
|
||||||
ansible.builtin.command: dpkg-reconfigure -f noninteractive locales
|
ansible.builtin.command: dpkg-reconfigure -f noninteractive locales
|
||||||
|
changed_when: false
|
||||||
listen: reconfigure_locales
|
listen: reconfigure_locales
|
||||||
|
when: not ansible_check_mode
|
||||||
|
|
||||||
- name: Restart WireGuard
|
- name: Restart WireGuard
|
||||||
ansible.builtin.service:
|
ansible.builtin.service:
|
||||||
|
|||||||
@@ -4,6 +4,18 @@
|
|||||||
state: present
|
state: present
|
||||||
update_cache: true
|
update_cache: true
|
||||||
|
|
||||||
|
- name: Get the default policy and basic SELinux utilities
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: ["selinux-basics", "selinux-policy-default", "auditd"]
|
||||||
|
state: present
|
||||||
|
when: selinux is defined and selinux is not false
|
||||||
|
|
||||||
|
- name: Configure SELinux
|
||||||
|
ansible.posix.selinux:
|
||||||
|
state: "{{ selinux.state | default('permissive') }}"
|
||||||
|
policy: "{{ selinux.policy | default('default') }}"
|
||||||
|
when: selinux is defined and selinux is not false
|
||||||
|
|
||||||
- name: Install GPG
|
- name: Install GPG
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: gpg
|
name: gpg
|
||||||
|
|||||||
@@ -6,6 +6,17 @@ Address = {{ wireguard.address }}
|
|||||||
{% if wireguard.listenport is defined %}
|
{% if wireguard.listenport is defined %}
|
||||||
ListenPort = {{ wireguard.listenport }}
|
ListenPort = {{ wireguard.listenport }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{%- if wireguard.table is defined %}
|
||||||
|
Table = {{ wireguard.table }}
|
||||||
|
{% endif -%}
|
||||||
|
|
||||||
|
{%- if wireguard.postup is defined %}
|
||||||
|
PostUp = {{ wireguard.postup }}
|
||||||
|
{% endif -%}
|
||||||
|
|
||||||
|
{%- if wireguard.predown is defined %}
|
||||||
|
PreDown = {{ wireguard.predown }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for peer in wireguard.peers %}
|
{% for peer in wireguard.peers %}
|
||||||
{% if peer.name is defined %}
|
{% if peer.name is defined %}
|
||||||
|
|||||||
@@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
- name: Generate OpenSSH deploy keys for docker compose (podman) clones
|
- name: Generate OpenSSH deploy keys for docker compose (podman) clones
|
||||||
community.crypto.openssh_keypair:
|
community.crypto.openssh_keypair:
|
||||||
path: "{{ podman_ssh_key_path }}/podman-id_{{ podman_repos_keytype }}"
|
path: "{{ podman_homedir }}/.ssh/podman-id_{{ podman_repos_keytype }}"
|
||||||
type: "{{ podman_repos_keytype }}"
|
type: "{{ podman_repos_keytype }}"
|
||||||
comment: "{{ ansible_hostname }}-{{ podman_user }}-deploy-key"
|
comment: "{{ ansible_hostname }}-{{ podman_user }}-deploy-key"
|
||||||
owner: "{{ podman_user }}"
|
owner: "{{ podman_user }}"
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
)
|
)
|
||||||
else false
|
else false
|
||||||
}}
|
}}
|
||||||
key_file: "{{ podman_ssh_key_path }}/podman-id_{{ podman_repos_keytype }}"
|
key_file: "{{ podman_homedir }}/.ssh/podman-id_{{ podman_repos_keytype }}"
|
||||||
become: true
|
become: true
|
||||||
become_user: "{{ podman_user }}"
|
become_user: "{{ podman_user }}"
|
||||||
loop: "{{ podman_project }}"
|
loop: "{{ podman_project }}"
|
||||||
|
|||||||
20
roles/podman/tasks/login.yml
Normal file
20
roles/podman/tasks/login.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
- name: "Get UID for {{ podman_user.key }}"
|
||||||
|
ansible.builtin.getent:
|
||||||
|
database: passwd
|
||||||
|
key: "{{ podman_user.key }}"
|
||||||
|
|
||||||
|
- name: Login to private Podman registry via Docker CLI
|
||||||
|
community.docker.docker_login:
|
||||||
|
registry_url: "{{ registry.key }}"
|
||||||
|
username: "{{ registry.value.username }}"
|
||||||
|
password: "{{ registry.value.password }}"
|
||||||
|
docker_host: "unix:///run/user/{{ podman_uid }}/podman/podman.sock"
|
||||||
|
vars:
|
||||||
|
podman_uid: "{{ ansible_facts.getent_passwd[podman_user.key][1] }}"
|
||||||
|
loop: "{{ podman_user.value | dict2items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: registry
|
||||||
|
label: "{{ podman_user.key }} => {{ registry.key }}"
|
||||||
|
become: true
|
||||||
|
become_user: "{{ podman_user.key }}"
|
||||||
|
no_log: true
|
||||||
@@ -105,6 +105,13 @@
|
|||||||
state: present
|
state: present
|
||||||
when: podman_compose is defined
|
when: podman_compose is defined
|
||||||
|
|
||||||
|
- name: Login to private Podman registries with Docker CLI for each user
|
||||||
|
ansible.builtin.include_tasks: login.yml
|
||||||
|
loop: "{{ podman_login | dict2items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: podman_user
|
||||||
|
when: podman_login is defined
|
||||||
|
|
||||||
- name: Deploy Podman compose projects for each user
|
- name: Deploy Podman compose projects for each user
|
||||||
ansible.builtin.include_tasks: deploy.yml
|
ansible.builtin.include_tasks: deploy.yml
|
||||||
vars:
|
vars:
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
cached_dhparams_pem: /vagrant/scratch/dhparams.pem
|
proxy_cached_dhparams_pem: /vagrant/scratch/dhparams.pem
|
||||||
|
|||||||
@@ -12,12 +12,12 @@
|
|||||||
|
|
||||||
- name: Check for cached dhparams.pem file
|
- name: Check for cached dhparams.pem file
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ cached_dhparams_pem }}"
|
path: "{{ proxy_cached_dhparams_pem }}"
|
||||||
register: dhparams_file
|
register: dhparams_file
|
||||||
|
|
||||||
- name: Copy cached dhparams.pem to /etc/ssl/
|
- name: Copy cached dhparams.pem to /etc/ssl/
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ cached_dhparams_pem }}"
|
src: "{{ proxy_cached_dhparams_pem }}"
|
||||||
dest: /etc/ssl/dhparams.pem
|
dest: /etc/ssl/dhparams.pem
|
||||||
mode: "600"
|
mode: "600"
|
||||||
remote_src: true
|
remote_src: true
|
||||||
@@ -41,6 +41,8 @@
|
|||||||
dest: "/etc/nginx/sites-available/{{ item.domain }}.conf"
|
dest: "/etc/nginx/sites-available/{{ item.domain }}.conf"
|
||||||
mode: "400"
|
mode: "400"
|
||||||
loop: "{{ proxy.servers }}"
|
loop: "{{ proxy.servers }}"
|
||||||
|
loop_control:
|
||||||
|
label: "{{ item.domain }}"
|
||||||
notify: reload_nginx
|
notify: reload_nginx
|
||||||
register: nginx_sites
|
register: nginx_sites
|
||||||
|
|
||||||
@@ -63,14 +65,14 @@
|
|||||||
|
|
||||||
- name: Grab Cloudflare API token for configuration
|
- name: Grab Cloudflare API token for configuration
|
||||||
ansible.builtin.slurp:
|
ansible.builtin.slurp:
|
||||||
src: /root/.cloudflare-api
|
src: /etc/letsencrypt/cloudflare-api.key
|
||||||
register: cfapi
|
register: cfapi
|
||||||
when: proxy.production is defined and proxy.production and proxy.dns_cloudflare is defined
|
when: proxy.production is defined and proxy.production and proxy.dns_cloudflare is defined
|
||||||
|
|
||||||
- name: Install Cloudflare API token
|
- name: Install Cloudflare API token
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: cloudflare.ini.j2
|
src: cloudflare.ini.j2
|
||||||
dest: /root/.cloudflare.ini
|
dest: /etc/letsencrypt/cloudflare.ini
|
||||||
mode: "400"
|
mode: "400"
|
||||||
diff: false
|
diff: false
|
||||||
when: proxy.production is defined and proxy.production and proxy.dns_cloudflare is defined
|
when: proxy.production is defined and proxy.production and proxy.dns_cloudflare is defined
|
||||||
@@ -89,22 +91,46 @@
|
|||||||
mode: "0755"
|
mode: "0755"
|
||||||
when: proxy.production is defined and proxy.production
|
when: proxy.production is defined and proxy.production
|
||||||
|
|
||||||
|
- name: Enable SELinux bool certbot_acmesh to allow sh access for DNS-01
|
||||||
|
ansible.posix.seboolean:
|
||||||
|
name: certbot_acmesh
|
||||||
|
state: true
|
||||||
|
persistent: true
|
||||||
|
when:
|
||||||
|
- selinux is defined
|
||||||
|
- selinux is not false
|
||||||
|
- proxy is defined
|
||||||
|
- proxy.production is defined
|
||||||
|
- proxy.production
|
||||||
|
- proxy.dns_cloudflare is defined
|
||||||
|
|
||||||
- name: Run Cloudflare DNS-01 challenges on wildcard domains
|
- name: Run Cloudflare DNS-01 challenges on wildcard domains
|
||||||
ansible.builtin.shell: '/usr/bin/certbot certonly \
|
ansible.builtin.shell: '/usr/bin/certbot certonly \
|
||||||
--non-interactive \
|
--non-interactive \
|
||||||
--agree-tos \
|
--agree-tos \
|
||||||
--email "{{ proxy.dns_cloudflare.email }}" \
|
--email "{{ proxy.dns_cloudflare.email }}" \
|
||||||
--dns-cloudflare \
|
--dns-cloudflare \
|
||||||
--dns-cloudflare-credentials /root/.cloudflare.ini \
|
--dns-cloudflare-credentials /etc/letsencrypt/cloudflare.ini \
|
||||||
-d "*.{{ item }}" \
|
-d "*.{{ item }}" \
|
||||||
-d "{{ item }}" \
|
-d "{{ item }}" \
|
||||||
{{ proxy.dns_cloudflare.opts | default("") }}'
|
{{ proxy.dns_cloudflare.opts | default("") }}
|
||||||
|
< /dev/null'
|
||||||
args:
|
args:
|
||||||
creates: "/etc/letsencrypt/live/{{ item }}/fullchain.pem"
|
creates: "/etc/letsencrypt/live/{{ item }}/fullchain.pem"
|
||||||
loop: "{{ proxy.dns_cloudflare.wildcard_domains }}"
|
loop: "{{ proxy.dns_cloudflare.wildcard_domains }}"
|
||||||
when: proxy.production is defined and proxy.production and proxy.dns_cloudflare is defined
|
when: proxy.production is defined and proxy.production and proxy.dns_cloudflare is defined
|
||||||
notify: reload_nginx
|
notify: reload_nginx
|
||||||
|
|
||||||
|
- name: Enable SELinux bool httpd_can_network_connect to give nginx networking
|
||||||
|
ansible.posix.seboolean:
|
||||||
|
name: httpd_can_network_connect
|
||||||
|
state: true
|
||||||
|
persistent: true
|
||||||
|
when:
|
||||||
|
- selinux is defined
|
||||||
|
- selinux is not false
|
||||||
|
- proxy is defined
|
||||||
|
|
||||||
- name: Add HTTP and HTTPS firewall rule
|
- name: Add HTTP and HTTPS firewall rule
|
||||||
community.general.ufw:
|
community.general.ufw:
|
||||||
rule: allow
|
rule: allow
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
{% if proxy.ipv6 is defined and proxy.ipv6 %}
|
||||||
listen [::]:80;
|
listen [::]:80;
|
||||||
|
{% endif %}
|
||||||
server_name {{ item.domain }};
|
server_name {{ item.domain }};
|
||||||
return 301 https://{{ item.domain }}$request_uri;
|
return 301 https://{{ item.domain }}$request_uri;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
|
{% if proxy.ipv6 is defined and proxy.ipv6 %}
|
||||||
listen [::]:443 ssl http2;
|
listen [::]:443 ssl http2;
|
||||||
|
{% endif %}
|
||||||
server_name {{ item.domain }};
|
server_name {{ item.domain }};
|
||||||
access_log /var/log/nginx/{{ item.domain }}.log main;
|
access_log /var/log/nginx/{{ item.domain }}.log main;
|
||||||
{% if proxy.production is defined and proxy.production and proxy.dns_cloudflare.wildcard_domains is defined and item.tls.cert is not defined %}
|
{% if proxy.production is defined and proxy.production and proxy.dns_cloudflare.wildcard_domains is defined and item.tls.cert is not defined %}
|
||||||
|
|||||||
Reference in New Issue
Block a user