Add websites

master
Quentin Duchemin 2021-04-26 23:56:52 +02:00
parent 8bfb5909f8
commit 217e0d559c
Signed by: Chosto
GPG Key ID: 0547178FEEDE7D6B
6 changed files with 122 additions and 0 deletions

View File

@ -20,3 +20,5 @@
tags: ["docker", "grav"] tags: ["docker", "grav"]
- role: "lychee" - role: "lychee"
tags: ["docker", "lychee"] tags: ["docker", "lychee"]
- role: "web"
tags: ["docker", "web"]

View File

@ -0,0 +1,34 @@
---
- name: Create website directories
file:
path: "{{ websites_basepath }}/{{ item.name }}"
state: directory
owner: "{{ base_user_name }}"
group: "{{ base_user_name }}"
mode: 0755
with_items: "{{ websites_to_up }}"
- name: Copy nginx configurations
template:
src: "nginx.conf.j2"
dest: "{{ websites_basepath }}/{{ item.name }}.conf"
owner: "{{ base_user_name }}"
group: "{{ base_user_name }}"
mode: 0644
with_items: "{{ websites_to_up }}"
- name: Create Docker Compose from websites definition
template:
src: "docker-compose.yml.j2"
dest: "{{ websites_basepath }}/docker-compose.yml"
owner: "{{ base_user_name }}"
group: "{{ base_user_name }}"
mode: 0644
- name: Create websites containers
community.docker.docker_compose:
project_src: "{{ websites_basepath }}"
remove_orphans: yes
pull: yes
recreate: smart
state: present

View File

@ -0,0 +1,47 @@
version: "{{ compose_version }}"
networks:
proxy:
name: "{{ traefik_network }}"
php:
name: php
services:
{% for website in websites_to_up %}
{{ website.name }}:
container_name: web_{{ website.name }}
image: nginx:alpine
volumes:
- {{ websites_basepath }}/{{ website.name }}:/var/www/html:ro
- {{ websites_basepath }}/{{ website.name }}.conf:/etc/nginx/conf.d/default.conf:ro
labels:
traefik.http.routers.{{ website.name }}.entrypoints: websecure
traefik.http.routers.{{ website.name }}.rule: "Host(`{{ website.name }}.{{ domain_name }}`)"
traefik.http.services.{{ website.name }}.loadbalancer.server.port: "{{ nginx_internal_port }}"
traefik.enable: true
networks:
- proxy
- php
read_only: true
tmpfs:
- /var/cache/nginx
- /run
restart: unless-stopped
{% endfor %}
{# Up a php container if any of the website needs PHP #}
{% if websites_to_up | selectattr('php', 'equalto', 'true') | list | length > 0 %}
php:
container_name: php
image: php:{{ php_version }}
networks:
- php
volumes:
{# Mount files from websites which need PHP #}
{% for website in websites_to_up %}
{% if website.php == "true" %}
- {{ websites_basepath }}/{{ website.name }}:/var/www/html/{{ website.name }}:ro
{% endif %}
{% endfor %}
restart: unless-stopped
{% endif %}

View File

@ -0,0 +1,29 @@
server {
server_name {{ item.name }}.chosto.me;
listen {{ nginx_internal_port }};
root /var/www/html;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$query_string;
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
autoindex {{ item.autoindex }};
}
{% if item.php == 'true' %}
# PHP-FPM Configuration Nginx
location ~ \.php$ {
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
try_files $uri = 404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
{# Unique PHP container, we need to discriminate files by website name#}
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param SCRIPT_FILENAME {{ item.name }}/$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
{% endif %}
}

View File

@ -0,0 +1,10 @@
php_version: 8.0-fpm-alpine
nginx_internal_port: 80
websites_basepath: "{{ docker_files }}/web"
websites_to_up:
- name: "static"
php: "false"
autoindex: "on"
- name: "artexistence"
php: "false"
autoindex: "off"