Deploy remark42
/ terraform (push) Successful in 29s Details
/ ansible (push) Successful in 1m43s Details

To soon replace Commento
This commit is contained in:
Jake Howard 2023-11-06 20:06:51 +00:00
parent 5fb605231d
commit 48dbaeed99
Signed by: jake
GPG Key ID: 57AFB45680EDD477
7 changed files with 116 additions and 0 deletions

View File

@ -103,6 +103,7 @@
- restic
- commento
- website
- remark42
- hosts: jellyfin
roles:

View File

@ -0,0 +1,42 @@
version: "2.3"
services:
remark:
image: umputun/remark42:latest
restart: unless-stopped
networks:
- default
- traefik
labels:
- traefik.enable=true
- traefik.http.routers.remark.rule=Host(`remark.theorangeone.net`)
environment:
- APP_UID={{ docker_user.id }}
- REMARK_URL=https://remark.theorangeone.net
- SECRET={{ remark_secret }}
- ADMIN_PASSWD={{ remark_admin_password }}
- SITE=theorangeone
- TIME_ZONE={{ timezone }}
- SMTP_HOST=smtp.eu.mailgun.org
- SMTP_USERNAME={{ remark_smtp_username }}
- SMTP_PASSWORD={{ remark_smtp_password }}
- NOTIFY_EMAIL_FROM={{ remark_from_email }}
- AUTH_EMAIL_FROM={{ remark_from_email }}
- SMTP_TLS=true
- SMTP_PORT=465
- ADMIN_EDIT=true
- NOTIFY_USERS=email
- NOTIFY_ADMINS=email
- EMOJI=true
- DISABLE_SIGNATURE=true
- AUTH_ANON=true
- AUTH_GITHUB_CID={{ remark_github_client_id }}
- AUTH_GITHUB_CSEC={{ remark_github_client_secret }}
- ALLOWED_HOSTS=remark.theorangeone.net,theorangeone.net
- ADMIN_SHARED_EMAIL={{ remark_admin_email }}
volumes:
- ./remark:/srv/var
networks:
traefik:
external: true

View File

@ -0,0 +1,4 @@
- name: restart remark
shell:
chdir: /opt/remark42
cmd: "{{ docker_update_command }}"

View File

@ -0,0 +1,20 @@
- name: Include vault
include_vars: vault.yml
- name: Create install directory
file:
path: /opt/remark42
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/remark42/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
notify: restart remark
become: true

View File

@ -0,0 +1,8 @@
remark_github_client_id: "{{ vault_remark_github_client_id }}"
remark_github_client_secret: "{{ vault_remark_github_client_secret }}"
remark_smtp_username: "{{ vault_remark_smtp_username }}"
remark_smtp_password: "{{ vault_remark_smtp_password }}"
remark_from_email: "{{ vault_remark_from_email }}"
remark_secret: "{{ vault_remark_secret }}"
remark_admin_password: "{{ vault_remark_admin_password }}"
remark_admin_email: "{{ vault_remark_admin_email }}"

33
ansible/roles/remark42/vars/vault.yml generated Normal file
View File

@ -0,0 +1,33 @@
$ANSIBLE_VAULT;1.1;AES256
32653162636262326430313162313536316561313639313832636436366661356339373363353263
3864323061386236616234623130356662643234616532360a373834613630393966313062383636
31316265613331653863643133323330656235353533663065326166353334333064366463383730
6363366233313932360a653863326430653430393635393533386536386536623235376339376465
61613136313965663236353661313231373563366537393462356433653761626363386133353166
38386561323630306431396630373532363765393763363864336630663863383239373533613065
63623730623766653433616134313562303365336339363939656230303762623638323133323639
32396366343035323136303738393532656334353761363933313530333461316662353132623737
65303231643062326133363639663438313132333661383132613461323731373037343462616234
65303265303431636264393337616133636632613337643665643933666661366365663639303330
31643935323539303431393733613062316638376136363462353635643132636266363462343862
33306164626636646262643661613332343264353331323635363837376232666565336639316335
62303334643165623738646633373635626462333138386238306165613932383363646635333939
34346263623638356230663230366163663339383365376562393837623333356135383835613962
62383465353732376337343133626461323232313437323061656236336634326538346264623637
32326566353030316335616632396466333166396664396662613463393362653463383534663038
63323465343464643962366431383039626530346136373130656334323534313533393835396461
38653834366164353737653366623038323663383437373533623930613935353231303265393732
37306664623730343133333632343830656338333666353735366335643161613239353230653263
35646237623961616438633634303461616137316663346462396633626632366639636466663364
38646462613537653164396631396664366330623835333638626534663062396465326631616130
34353562323064363131636630353066623562353432646138393130366566316236633335376231
32333638666530636630626639613534313932336162303332326132643533623635316562613135
39303463636366386563653033636263333665376637663438653530636333626631643634346630
36396362383531656333626432626632626538616236393833653865363463646262343363373365
32663038623233353431643264323838363330383562633038373937323731333632656532386432
63373363373133666632326632333964303866663765323731333339623032386361633539346161
63393730636137313734326365326164613937636566636465383264373937373833623937643539
35386166316562373834326639373035343330613531626463386135656461326561633563303030
30306338653434373837643361636133613962303538353036326430646161363537366266326164
32646664316135333936373865303361643731316435643130666464643732363138663363356438
32316437306162396366

View File

@ -213,6 +213,14 @@ resource "cloudflare_record" "theorangeonenet_commento" {
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_remark" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "remark"
value = cloudflare_record.sys_domain_walker.hostname
type = "CNAME"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_mailgun_spf" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "mg"