Compare commits

...

16 commits

69 changed files with 4351 additions and 2552 deletions

1
.gitignore vendored
View file

@ -37,3 +37,4 @@ override.tf.json
terraform.rc
.vscode
ansible/.vault_password
ansible/roles/nginx/vars/main/vault.yml

View file

@ -2,6 +2,11 @@
The goal of this project is to share the things i set up in my own homelab. I created this as a way to inspire others to create their own homelabs!
## Caveats
- Most of these roles are NOT ready to be used on other environments
- If i leak some secrets, please contact me :)
## Why do some files look wierd?
I have used ansible-vault to protect some parts of my setup, as i don't want all of it documented on the worldwide web :)

View file

@ -1,2 +1,5 @@
[defaults]
vault_password_file = .vault_password
forks = 30
host_key_checking = False
nocows=1

View file

@ -1,6 +1,12 @@
---
- name: Setup uptime_kuma
- name: Setup Forgejo actions
hosts:
- grafana
- arkivet
roles:
- grafana
- arkivet
- name: Setup headscale nginx
hosts:
- olympus_entry
roles:
- olympus_entry

View file

@ -2,8 +2,8 @@
- name: Bootstrap tailscale on host
vars:
headscale_domain: "https://headscale.polsevev.dev"
username: havneboks
username: arkivet
hosts:
- action_runner
- arkivet
roles:
- tailscale

View file

@ -46,8 +46,8 @@ hyperion
[olympus_entry]
37.27.192.11
[action_runner]
192.168.1.50
[byggmester]
192.168.1.54
[brevgress]
192.168.1.70
@ -58,14 +58,32 @@ hyperion
[matmonster]
192.168.1.30
[fabrikken]
192.168.1.31
[umami]
192.168.1.52
[forgejo]
192.168.1.53
[arkivet]
192.168.1.55
[vms]
[vms:children]
grafana
action_runner
brevgress
havneboks
matmonster
fabrikken
polsevev
umami
forgejo
byggmester
arkivet
[vps]

View file

@ -0,0 +1,3 @@
---
arkivet_version_number: v2.31.2
arkivet_download_url: "https://github.com/filebrowser/filebrowser/releases/download/{{ arkivet_version_number }}/linux-amd64-filebrowser.tar.gz"

View file

@ -0,0 +1,38 @@
$ANSIBLE_VAULT;1.1;AES256
34333665666433666130663938643134646235363961313131313338396337396331663334616236
3935373963666433623833313962303630306164653161660a353866313232616362366131326661
34333930383733373639333663646537353161643134316139333438663465626230613839316564
6232353739386637620a376130353136316562653765386566353066363235313134303334316436
37313362393861333633663537663365653630326133616537613035653030376339653939613630
62613964323939626565643161313231383933323264343266346564336538653739376531653965
38663231646337373566396261333232316662303435343664666136626661623632353937336263
61663933306664643062393364636238356362363364383132316637356135653161666339363462
39333864663437373965653539626364373134383664373734663836633364643938646437356631
35633337326133663432323130343232623766333861393833356664636265616430636661376464
37653262633239626338373062653761316135646534393239613964333035376331613336623366
64366334313233326530373966366265636664303430323732313630333465303165353965393162
39376637333432343364386231363931393232386633613331376237396630336333316464396265
39613537623761616364393534383331393566316666653636353866383237633161613831356133
63323334633830376239396562613239356538323035666665663530353563323735316139373863
62616632623465663638653334653464616631616164336565303033336130396337393036376637
39373433373266346237383632666438366337386361633966356535323734656635303766363933
64643661633437663665666661313762616661343239313563376138623961363636376134376130
31393632313664316635353666306361306164393566303564346533373462333535353364323430
66633564346230336139363633363333613335376165636661316165326434666363663532613139
31306462313065396532626431373932306430323066313634323831306566646233323165616339
30353839363637353033653933636465616261363065653237623630323837663565383637373563
39346138323034643536363835623836383933353030306137323766343464363930343566653234
38323731346261336631636364613536666232656563303766363762666130353633333963393734
39323564623731383135316333613337646461346661383936346266366136366561366266356539
65643236363265666366663939663838643261666534373363363732363833613665333866373161
34616637333265343430636636663566396636663433653736303430396462383936333339346136
32633465656264666239353465656364646562646330393162393037633664323365626632326639
31333765643430343731636630636531383235616663643263356166356165386464346534363566
65373335366466623165333939363436626531613662333535653863356531343664366430613262
37653435323633616135356438363139373666626361653965393461616632633866323665333361
38656633386534346639626263346632353663383032346435633062666633393134633661626333
37306636346264613133343938343432353436353435643764666335366335303230643966313665
30636561643364626434366564633538323030633734303665666437326262303032316163316539
66653933326530363361393631316435363165323337663133656462616563366662633064366136
39616634653861613531346236633165383431616131356265623733383064643838303639366364
61326331633534393866633962613230373064386230626135306333616339616263

View file

@ -0,0 +1,11 @@
[Unit]
Description=Selfhosted file browser with web UI
After=network.target
[Service]
RuntimeDirectory=/opt/filebrowser/
User=arkiv
ExecStart=/opt/filebrowser/filebrowser -c /opt/filebrowser/config.yml
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,6 @@
---
- name: Restart filebrowser
ansible.builtin.systemd:
name: filebrowser.service
state: restarted
become: true

View file

@ -0,0 +1,5 @@
---
dependencies:
- role: nginx
nginx_acme_sh_domains:
- files.polsevev.dev

View file

@ -0,0 +1,89 @@
---
- name: Create filebrowser user
ansible.builtin.user:
name: arkiv
password: "!"
home: "/home/arkiv"
create_home: true
system: true
shell: /bin/bash
comment: "arkiv system user"
become: true
- name: Create binary directory
ansible.builtin.file:
path: /opt/filebrowser
state: directory
owner: arkiv
mode: "0700"
become: true
notify: Restart filebrowser
- name: Download program
ansible.builtin.get_url:
url: "{{ arkivet_download_url }}"
dest: /tmp/filebrowser.tar.gz
owner: ansible
mode: "0700"
- name: Untar
ansible.builtin.unarchive:
src: /tmp/filebrowser.tar.gz
dest: /opt/filebrowser
mode: "0700"
owner: arkiv
remote_src: true
become: true
notify: Restart filebrowser
- name: Create mount directory
ansible.builtin.file:
state: directory
owner: arkiv
path: /mnt/arkivet
mode: "0700"
become: true
- name: Mount unraid server share
ansible.posix.mount:
src: //192.168.1.100/arkivet
path: /mnt/arkivet
opts: "rw,vers=3,file_mode=0666,dir_mode=0777,username={{ arkivet_mount_user }},password={{ arkivet_mount_password }}"
fstype: cifs
boot: true
state: mounted
become: true
notify: Restart filebrowser
- name: Template config
ansible.builtin.template:
src: config.yml.j2
dest: /opt/filebrowser/config.yml
owner: arkiv
mode: "0600"
become: true
notify: Restart filebrowser
- name: Copy systemd service
ansible.builtin.copy:
src: filebrowser.service
dest: /etc/systemd/system/filebrowser.service
owner: root
mode: "0644"
become: true
notify: Restart filebrowser
- name: Ensure service started
ansible.builtin.systemd:
name: filebrowser.service
state: started
daemon_reload: true
become: true
- name: Copy nginx config
ansible.builtin.copy:
src: filebrowser.conf
dest: /etc/nginx/sites-enabled/filebrowser.conf
owner: root
mode: "0644"
become: true
notify: Reload nginx

View file

@ -0,0 +1,9 @@
address: 127.0.0.1
port: 8080
baseurl: /
database: /opt/filebrowser/filebrowser.db
username: {{ arkivet_filebrowser_username }}
password: {{ arkivet_filebrowser_password }}
root: /mnt/arkivet

View file

@ -0,0 +1,16 @@
$ANSIBLE_VAULT;1.1;AES256
39363239636565323738396539643333383339316162333739313033363038313462626638386161
6165643436323662393535396338356534633163666434660a316231653761333933626434653961
32396264393564333632346565383064356237396263353935326438643839636433303365303031
6431646136373836310a383935616533376336366663303236306661383235303037623565613237
34323865653165656336663062343735376335636538333761306639306261653664363763626163
35633465663333353331393966623332356331336631393465373165303166396532636363343765
63313966663966623164613732333236353666316264363638356337323132666662653430363330
33633630373065376133393038383937373130643466613031663261643035633132666338663765
30316466303235613462656663393961303165383634636534376163376534333863323137333330
30356463356266333732666237323037646333353361346235303236363130373864656131616630
66323631653630343162373038336134616431383330383131613132623436633232393063363661
30343663326231626639373839326435313934353666656566633234613830363332346464656234
66393739366462366230353138646430653730363438363264376534373930653162643863383731
63656438303533626231353330636138356236633065343738386639623834393631306434616361
373936356539623938653836323431316665

View file

@ -0,0 +1,76 @@
log:
# The level of logging, can be trace, debug, info, warn, error, fatal
level: info
runner:
# Where to store the registration result.
file: .runner
# Execute how many tasks concurrently at the same time.
capacity: 1
# Extra environment variables to run jobs.
envs:
# Extra environment variables to run jobs from a file.
# It will be ignored if it's empty or the file doesn't exist.
env_file: .env
# The timeout for a job to be finished.
# Please note that the Forgejo instance also has a timeout (3h by default) for the job.
# So the job could be stopped by the Forgejo instance if it's timeout is shorter than this.
timeout: 12h
# Whether skip verifying the TLS certificate of the Forgejo instance.
insecure: false
# The timeout for fetching the job from the Forgejo instance.
fetch_timeout: 5s
# The interval for fetching the job from the Forgejo instance.
fetch_interval: 2s
# The labels of a runner are used to determine which jobs the runner can run, and how to run them.
# Like: ["macos-arm64:host", "ubuntu-latest:docker://node:16-bullseye", "ubuntu-22.04:docker://node:16-bullseye"]
# If it's empty when registering, it will ask for inputting labels.
# If it's empty when execute `deamon`, will use labels in `.runner` file.
labels: ["ubuntu"]
cache:
# Enable cache server to use actions/cache.
enabled: true
# The directory to store the cache data.
# If it's empty, the cache data will be stored in $HOME/.cache/actcache.
dir: ""
# The host of the cache server.
# It's not for the address to listen, but the address to connect from job containers.
# So 0.0.0.0 is a bad choice, leave it empty to detect automatically.
host: ""
# The port of the cache server.
# 0 means to use a random available port.
port: 0
container:
# Specifies the network to which the container will connect.
# Could be host, bridge or the name of a custom network.
# If it's empty, create a network automatically.
network: ""
# Whether to use privileged mode or not when launching task containers (privileged mode is required for Docker-in-Docker).
privileged: false
# And other options to be used when the container is started (eg, --add-host=my.forgejo.url:host-gateway).
options:
# The parent directory of a job's working directory.
# If it's empty, /workspace will be used.
workdir_parent:
# Volumes (including bind mounts) can be mounted to containers. Glob syntax is supported, see https://github.com/gobwas/glob
# You can specify multiple volumes. If the sequence is empty, no volumes can be mounted.
# For example, if you only allow containers to mount the `data` volume and all the json files in `/src`, you should change the config to:
# valid_volumes:
# - data
# - /src/*.json
# If you want to allow any volume, please use the following configuration:
# valid_volumes:
# - '**'
valid_volumes: []
# overrides the docker client host with the specified one.
# If it's empty, act_runner will find an available docker host automatically.
# If it's "-", act_runner will find an available docker host automatically, but the docker host won't be mounted to the job containers and service containers.
# If it's not empty or "-", the specified docker host will be used. An error will be returned if it doesn't work.
docker_host: ""
host:
# The parent directory of a job's working directory.
# If it's empty, $HOME/.cache/act/ will be used.
workdir_parent:

View file

@ -0,0 +1,19 @@
[Unit]
Description=Forgejo-runner
After=syslog.target
After=network.target
[Service]
RestartSec=2s
Type=simple
User=forgejo-runner
Group=forgejo-runner
WorkingDirectory=/home/forgejo-runner
ExecStart=/home/forgejo-runner/forgejo-runner daemon --config config.yml
Restart=always
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,11 @@
---
- name: Restart forgejo-runner
ansible.builtin.service:
name: forgejo-runner
state: restarted
become: true
- name: Daemon reload
ansible.builtin.systemd:
daemon_reload: true
become: true

View file

@ -0,0 +1,4 @@
---
dependencies:
- common
- docker

View file

@ -0,0 +1,119 @@
---
- name: Install building dependencies
ansible.builtin.apt:
pkg:
- npm
- rsync
update_cache: true
become: true
- name: Create groups
ansible.builtin.group:
name: "{{ item }}"
loop:
- docker
- forgejo-runner
become: true
- name: Create forgejo-runner user
ansible.builtin.user:
name: forgejo-runner
groups: docker
group: forgejo-runner
password: "!"
home: "/home/forgejo-runner"
create_home: true
system: true
shell: /bin/bash
comment: "forgejo-runner system user"
become: true
notify: Restart forgejo-runner
- name: Download
ansible.builtin.get_url:
url: "{{ byggmester_download_url }}"
dest: /home/forgejo-runner/forgejo-runner
mode: "774"
owner: forgejo-runner
become: true
notify: Restart forgejo-runner
- name: Copy runner service
ansible.builtin.copy:
src: forgejo-runner.service
dest: /etc/systemd/system/forgejo-runner.service
mode: "0644"
owner: root
become: true
notify: Daemon reload
- name: Copy config
ansible.builtin.copy:
src: config.yml
dest: /home/forgejo-runner/config.yml
mode: "0744"
owner: forgejo-runner
become: true
notify: Restart forgejo-runner
- name: See if runner file already exists
ansible.builtin.stat:
path: /home/forgejo-runner/.runner
register: is_registered
become: true
- name: Regisert new runner
when: "not is_registered.stat.exists"
block:
- name: Generate secret
delegate_to: forgejo
ansible.builtin.command: >-
/usr/local/bin/forgejo/forgejo forgejo-cli actions generate-secret
register: generated_secret
become: true
become_user: forgejo
- name: Create a runner on forgejo server
delegate_to: forgejo
ansible.builtin.command: >-
/usr/local/bin/forgejo/forgejo --config /etc/forgejo/app.ini forgejo-cli actions register
--name byggmester
--labels ubuntu
--secret {{ generated_secret.stdout }}
become: true
become_user: forgejo
- name: Join byggmester runner
ansible.builtin.command: >-
./forgejo-runner create-runner-file --instance https://code.polsevev.dev
--secret {{ generated_secret.stdout }}
args:
chdir: "/home/forgejo-runner"
become: true
become_user: forgejo-runner
notify: Restart forgejo-runner
- name: Ensure runnner service is started
ansible.builtin.service:
name: forgejo-runner.service
state: started
enabled: true
become: true
- name: Create .ssh
ansible.builtin.file:
state: directory
owner: forgejo-runner
path: /home/forgejo-runner/.ssh
group: forgejo-runner
mode: "0755"
become: true
- name: Create known hosts
ansible.builtin.file:
state: touch
owner: forgejo-runner
path: /home/forgejo-runner/.ssh/known_hosts
group: forgejo-runner
mode: "0600"
become: true

View file

@ -0,0 +1,4 @@
---
byggmester_runner_version: 3.5.1
byggmester_download_url: "https://code.forgejo.org/forgejo/runner/releases/download/v3.5.1/forgejo-runner-{{ byggmester_runner_version }}-linux-amd64"
byggmester_checksum: sha1:badd86f725c507dac37a28f03dbd4d7350195554

View file

@ -12,3 +12,8 @@
- lm-sensors
update_cache: true
become: true
- name: Import proxmox common when applicable
ansible.builtin.include_tasks:
file: proxmox.yml
when: "'proxmox' in group_names"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View file

@ -0,0 +1,20 @@
{{template "base/head" .}}
<div role="main" aria-label="{{if .IsSigned}}{{ctx.Locale.Tr "dashboard"}}{{else}}{{ctx.Locale.Tr "home"}}{{end}}" class="gt-pt-4">
<div class="center">
<img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/i-am-developer.gif">
<div class="hero">
<h1 class="ui icon header title">
{{AppDisplayName}}
</h1>
<h2>Welcome to the home of trashy source code and wonky projects</h2>
<h2>If you have ended up here in the search of answers, you should take a moment and wonder where it all went wrong</h2>
<h2>If you still think answers lie beyond here, go ahead, see how wrong you are</h2>
</div>
</div>
</div>
{{template "base/footer" .}}

View file

@ -0,0 +1,41 @@
$ANSIBLE_VAULT;1.1;AES256
38626232363030363533303465313536316464393337613335616338366232356361386237383535
6165363664306434316137346662323938636537343930640a323635666530313338363464383366
66663933393930633763626532386133303831373462366534656262653033303731316335666163
3763666639356264390a373930326638323836383239666431663739623233666666653564333965
35306361353563373932643364353738626430333535303038363562313766316630306161353661
64346161353535623537306165396137333534353632316163636634393930643630633239383334
30363939646266323630616138383430356663646133613563363261373561626135626130353135
37616234396364626330363864633161633733633966373839383565366234613830666635323232
38346336613531613362336335373363346131326364623434363864356433306266343664663835
38366338633730333533303938623636396432343937613663643338656238623436323839663639
61656561643762356435633635373230396363626139326265363633336564356633646439633133
64353339313137333437656261633937643739616362616132393961373430643866353330653435
34663934643430383539353631363530386339663832316437653834336435313266623161326431
38356164313535386465393835323766353239316332636234363436386561386235383732326533
31363662363231653832363765343530373635306266353139636538656432663539643265333331
31346431626564303334353232396530366265353938373431646362306262343364343036326538
33326139343232363439666435633965303133613035646663386637656336366439613435656631
39363763613165376134316133636230363338306437653564626465363034353631383033613032
62323037663536656662653732386263393962333439663638663836356135633736613363663234
61336138306565393162303734306637356137306165306161376139323834396162316564353035
32363166366131306534383464656538393337333837646462373533616437623435333264316166
30656262326164333435396161363864303539646266336631633665366237386131656131313966
62653830353262653262666536343931356639636662366330376334656662376562336161353333
61326533393662346435303961323330343032323038323838373930366438353362373836313234
64623031663536643835623437643133623966666262393765626633343561363033393263646233
30653235633461363335643661366166343533373733386331656433383061636437373963616339
31333233386635356662626330336265626262383362306138353766353434613634623031336565
30626532663061653461393066386333363935356464353239656661306335306264313739653239
61623264653339333362356365323561623565356263343934373639613336386263386265383239
36316133323431643532353362643337623338646363376364386439623238366132653735346262
37346630333830633131333839316361343636326263613331366565396464663135626639306463
65383939393732333364633839336535366438373761363766636334636365363465616430303538
66336334376266316336623437396534303733643231316361386338643931666363363930373134
38306339623862626632653139636465356130363761303439313132633836646636343961343438
61376532653037636131343331333239393430333436653964346663663630626332663162666433
61653230613065316239393637356431303830393238343362323063303465666262666536353235
37323862333639616466306238333833353133306662333064653535653133633936663765346431
38656235653864666232303733393839633662643762333964646565666433633461373931386361
38636230313936333039303863313135313234343762363036353461386666396161383162643163
65306461316533663666

View file

@ -0,0 +1,20 @@
[Unit]
Description=Forgejo (Beyond coding. We forge.)
After=syslog.target
After=network.target
[Service]
LimitNOFILE=524288:524288
RestartSec=2s
Type=simple
User=forgejo
Group=forgejo
WorkingDirectory=/var/lib/forgejo/
ExecStart=/usr/local/bin/forgejo/forgejo web --config /etc/forgejo/app.ini
Restart=always
Environment=USER=forgejo HOME=/home/forgejo FORGEJO_WORK_DIR=/var/lib/forgejo
[Install]
WantedBy=multi-user.target

View file

@ -0,0 +1,6 @@
---
- name: Restart forgejo
ansible.builtin.service:
name: forgejo
state: restarted
become: true

View file

@ -0,0 +1,5 @@
---
dependencies:
- role: nginx
nginx_acme_sh_domains:
- code.polsevev.dev

View file

@ -0,0 +1,126 @@
---
- name: Install dependencies
ansible.builtin.apt:
pkg:
- git
- git-lfs
update_cache: true
become: true
- name: Make forgejo group
ansible.builtin.group:
name: forgejo
become: true
- name: Make forgejo user
ansible.builtin.user:
name: forgejo
group: forgejo
password: "!"
home: "/home/forgejo"
create_home: true
system: true
shell: /bin/bash
comment: "forgejo system user"
become: true
- name: Make forgejo dir
ansible.builtin.file:
state: directory
path: /usr/local/bin/forgejo
owner: forgejo
mode: "755"
become: true
- name: Download forgejo
ansible.builtin.get_url:
dest: /usr/local/bin/forgejo/forgejo
url: "{{ forgejo_binary_download }}"
checksum: "{{ forgejo_sha1 }}"
owner: forgejo
mode: "0755"
become: true
notify: Restart forgejo
- name: Create forgejo logging dir
ansible.builtin.file:
path: /var/log/forgejo
owner: forgejo
mode: "0755"
state: directory
become: true
- name: Create forgejo data dir
ansible.builtin.file:
state: directory
owner: forgejo
group: forgejo
mode: "0750"
path: /var/lib/forgejo
become: true
notify: Restart forgejo
- name: Make forgejo config dir
ansible.builtin.file:
path: /etc/forgejo
owner: root
group: forgejo
mode: "0770"
state: directory
become: true
notify: Restart forgejo
- name: Transfer forgejo config
ansible.builtin.template:
src: app.ini.j2
dest: /etc/forgejo/app.ini
owner: root
mode: "0440"
become: true
notify: Restart forgejo
- name: Copy forgejo service
ansible.builtin.copy:
src: forgejo.service
dest: /etc/systemd/system/forgejo.service
mode: "0644"
owner: root
group: root
become: true
notify: Restart forgejo
- name: Ensure forgejo service started
ansible.builtin.service:
name: forgejo
state: started
enabled: true
become: true
- name: Sync custom forgejo styling
ansible.posix.synchronize:
src: custom
dest: /usr/local/bin/forgejo/
rsync_opts:
- --chown=forgejo:forgejo
- --chmod=755
recursive: true
notify: Restart forgejo
become: true
- name: Make forgejo config dir non writeable
ansible.builtin.file:
path: /etc/forgejo
mode: "0750"
state: directory
become: true
notify: Restart forgejo
when: "not initial_run"
- name: Copy forgejo nginx config
ansible.builtin.copy:
src: forgejo.conf
dest: /etc/nginx/sites-enabled/forgejo.conf
owner: root
mode: "0644"
become: true
notify: Reload nginx

View file

@ -0,0 +1,82 @@
APP_NAME = code.polsevev.dev
APP_SLOGAN = Beyond coding. We Forge.
RUN_USER = forgejo
WORK_PATH = /usr/local/bin/forgejo
RUN_MODE = prod
[database]
DB_TYPE = sqlite3
HOST = 127.0.0.1:3306
NAME = forgejo
USER = forgejo
PASSWD =
SCHEMA =
SSL_MODE = disable
PATH = /usr/local/bin/forgejo/data/forgejo.db
LOG_SQL = false
[repository]
ROOT = /var/lib/forgejo/forgejo-repositories
[server]
SSH_DOMAIN = code.polsevev.dev
DOMAIN = code.polsevev.dev
HTTP_PORT = 3000
ROOT_URL = https://code.polsevev.dev/
APP_DATA_PATH = /usr/local/bin/forgejo/data
DISABLE_SSH = false
SSH_PORT = 22
LFS_START_SERVER = true
LFS_JWT_SECRET = {{ forgejo_lfs_jwt_secret | mandatory }}
OFFLINE_MODE = true
[lfs]
PATH = /var/lib/forgejo/data/lfs
[mailer]
ENABLED = false
[service]
REGISTER_EMAIL_CONFIRM = false
ENABLE_NOTIFY_MAIL = false
DISABLE_REGISTRATION = true
ALLOW_ONLY_EXTERNAL_REGISTRATION = false
ENABLE_CAPTCHA = false
REQUIRE_SIGNIN_VIEW = false
DEFAULT_KEEP_EMAIL_PRIVATE = false
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
DEFAULT_ENABLE_TIMETRACKING = true
NO_REPLY_ADDRESS = noreply.localhost
[openid]
ENABLE_OPENID_SIGNIN = false
ENABLE_OPENID_SIGNUP = false
[cron.update_checker]
ENABLED = true
[session]
PROVIDER = file
[log]
MODE = console
LEVEL = info
ROOT_PATH = /var/log/forgejo/
[repository.pull-request]
DEFAULT_MERGE_STYLE = merge
[actions]
ENABLED=true
DEFAULT_ACTIONS_URL = https://code.forgejo.org
[repository.signing]
DEFAULT_TRUST_MODEL = committer
[security]
INSTALL_LOCK = true
INTERNAL_TOKEN = {{ forgejo_internal_token | mandatory }}
PASSWORD_HASH_ALGO = pbkdf2_hi
[oauth2]
JWT_SECRET = {{ forgejo_jwt_secret | mandatory }}

View file

@ -0,0 +1,5 @@
---
forgejo_version: 9.0.0
forgejo_binary_download: "https://codeberg.org/forgejo/forgejo/releases/download/v9.0.0/forgejo-{{ forgejo_version }}-linux-amd64"
forgejo_sha1: "sha1:bd525cc75452f3b64a23c0484d6760267b6b78e9"
initial_run: false

View file

@ -0,0 +1,18 @@
$ANSIBLE_VAULT;1.1;AES256
39663035646364323765396237376133353964646634663036373630633130303761333136336166
6638666433653436636433373563393034633737356266370a363961353431653162396631383161
31383138646164316166313563323366366137656366663564356633643033393666343436396239
6466613932653562300a393065316139623233643733623464313934306364633638363437333063
61663230633264643563623035396332663238376139643735646465633765353934633363623231
34373632646162383333613632643732366230343135623966623061313036306432663465383666
38363233656439346431663334336164346566656462396632663664663265623134666231373832
32383236636333643263306334353332383964303535616233326339376532316665666333316235
64663431363063663635303237323566366235636433373863646139666538653561623333353834
66626661666236353363663433336333623536393765383637626333303935396539393635623963
61303133303139313061383134373639323766373261623962653533343339346634636635616662
36333233363938383732633436363733356664643133666265656363613434353930326165343131
37356339623638313733376237303632663537613964646234316130333631636566613238313334
37316339336431343638656464323433393035633834323531353363363264653233376362376561
31383164303234616133313030623535353834616431313466616334323665303563663232363963
30356361643136656361663730656238346236663439333433623333353934623336316536633739
63346461626532653463653962386338623566616636636137366633663434386236

View file

@ -1,103 +1,108 @@
$ANSIBLE_VAULT;1.1;AES256
62633031316638613732633862626132336331633561306338373761656265346461383261366564
3961366230643461323231633666386161363539303236340a323464363237383165653830303536
63653932333733643730313438623335353862393763326663613135643231356337623436643064
6134623835306266650a393936323064373763363130656531306536643231636130333835376464
38626633653463303364396262306236313236356466386437356437623938393336316332633066
64303265383663366638323139383632383965653563653239303566316663333031613731376134
65313439386464343061383536643161333664626336373132353832633935323765353364393164
64343062303662323835613734626361363033313761626336313663356234396566306435613862
34613462346137623238356330623433353761633939616638643161316332346162313261653530
34616630653137626366363862623962646530366562313463383331666166336436663038313432
31653264346630313039393666666539366562643733663237383965393237633039643931643936
63613035313636336435633164303735396435333535333735633535346464356663353764373064
30636561376166336535396162626335393133653330346134383266323533626364653537633438
38346533643839653562326331356337393462663466383338653265633663316439363430613561
30383135396637373365336330653035653532633635626364366431356533336565386566616131
37316566323934383938323432373062313938386230363162343562363532653534343634393134
65656337326136623366383436666437313665653365336334316334333865306630353730373038
38316337393137313531306139613438323137383832343831343162633839336131313232626466
63393339316634306537313238353539306461326337333431316164643265336634383535323563
38656630353835646333353066343238613031336438346330666565393433393635333839386435
62663839373966653337666365383030633761373162623966336638373563366661366135623734
64656532623330363632393736663238633933633361346266313134303236306431633065383436
35383837626531623965616238653430376362313237383864303932376236366332316463306563
64613765643933386231376130623534316562313039643461623232393039346464653862386362
35653235666337653237636562313435303035303061313562616536663461363537303236373838
37643038353565636233363930613665326662626332346238386334633963666637343234306261
35393435623961616138346533363832643635383632633563656436303436623732373431306133
65363033363831623261373933343034373265396362613538646135646161333337613234363662
62383936363530636561623830626635613338363838383631353034343233333565396336343834
35646665623333393233613437353536323039613839393131353439383432363663656661643932
34306230363933376632373566376666386239343066653133663031333562303936386162356166
39336337373661313436356164616632333735333632346235663066643036633238653132313930
33613038653139393965656539613065306162313064626663653830643633326666323266386334
34313664383462326231316430396661363963346437343232343739656336383063383432383337
31303631393661663030393735656439316636316535383462383436653437366535636661643733
35623032656536616534383663323565396238623231646165313736323537353033383862333061
31386438343537376439373130646165633262626332623434623637653237383161363830393333
33376330366230616431326363336238653561616561633138623962613065646234373736663130
33356639386361653063653733393636613736336435653836323662396461323835396262346363
33643332616535656139636335393230393233323235626133323539386239616332393065363966
66303634353965326365616236343430326439623661666261666265626162636232633466333436
64303861386630363962643635323739333334316162616633316230653536633538316632333561
33623361343463313865313861653437313662363531323335333036366635623432616462333035
65373436303666646662316164353633353263353338356263613566666564393565653738333130
35306563653264323232343863353634343964333233363032313534646363386435366565656539
34373635313731353161323064313238616539616666316136623733313430333436313934633532
36393464336337353230336430373536323636656165373666653766306663376138353334643632
30376165663639353466366135373666353831333030306361366438323530633762633431346334
31336663303137333430646665393763383737316237336533663338303661346563616434356533
63386136396334363332663065393561366566393266313233616530383630323263366463366663
33373735623931623064646666346638363233653337616134623965366534646332306336316364
31373330666165396538363733343161383131396561306464646133363631353262313735353030
65313236386537633138616666333662356539613233396333393034336664616137353139323239
39653566363839623863333538633863363564336563626263333531616461393861373932333833
66613030373365616533323966373465633137656462643430346466656232663362386332323766
34643164343165373763336666643661653264346263636632303739383666323732646136333131
61326136393263383862313531323034343333656338333262333164613166633334633266633366
33346236646330376366393637336634643563653736646531313563306333323965663438653061
63396364343135343062323131373936663433626337613262346461353532346337663265386537
34626530636139376138313534656638363931376261306138353562386539333561363164323231
39383331316633333937333531303235616262396633383361386330386461376465393134303235
38366334346563613938303962336266663261616238633962333231383933623364336339343766
30306235303930396664303631383033313630646262306265613565356539653164313930346162
65373137386136333665393434636564303963616134366634353439613434333034663263623464
37363232373439643938326135333639373237346238363165646264643664323139663437393462
34353561396164656633376162306533346535343437396134643535356238396633663130643662
30643136343064323334393839376665666536386635346566653534666230353166326239313566
65393763353138336233366638373237633439346339333564343139636234396561343363376533
34303432373432363234393962373362316639386331626631623935633439363633396464643538
39366663316238633563363637643339383166383861393561343338626366626232336263383133
61333138356231396630613633346534396635643038383761626339386265376236356162623836
63633235313261653634313530313839393661373732363139353434373134336531316534343764
32393536376639663465613666613539386664663463646566613266396565646164653831393933
31663064643963383738313134636361613834643737653061353062663262326536313736326631
39316161383966333161316466386266316662646436396163393366393834303531663063613763
62313936313962386536656166353034376535373938366534613931393365636333386533316135
61303835383637366464326137366431636335393336373538383132646163376535306336363666
62376365356534336563333861363130656233633161393234643164613763623334323463336366
61393665313565653361353630353065353465616163393162353161323430373331326133383763
35623431343062353162343633333831393636316136366637623533373566303262376565333138
62326665386435393131373361363339303237373461363166653637353466306665613635336236
34343236636630303165393335383539343037653461666461346632343337356136633030373331
31646436656131373039376231663265636531373466616635346639613936383164396431313031
62356532656332353363653963646130336565353038636366386535363939656330363633623466
32333737386165356430366131343631616338616139316631356331376236333066626163643837
39666530396236396535663061313435613533316331376261326536393633323930643135313963
32366662613164383063306361333339626330626638653366613635616264396632323563663937
30336263373331393561366462663163396163333861653732383736613632623532646636393934
62623038616434613330653431633636326130633631356338626333643264666166373737343466
39363439323034303263663965356165373137326538313439666135383436353734643863323132
33303336376538313439613462303363303862333961373030346131623465343039373836613564
33336636326161646331353439323163353265313130393635336464643261646234346561633561
38386130376435383436356563306664386534396437313830386164336137343931663163353930
34383932323263333864346135313336323162646232633765383639363131323932343737643864
34393835306134656362653634306632353366663161666334343363626431346164323833643336
62633239613830336264383762656365656131356436343565303266613035626231393764613335
30316566316266316362346561636335373764623837653863316532336361353439653639613530
65623037383538396238646630623234363935366538343637396466633338346338386537396436
35303631623461633439633331313530356235643363623434343438383665313537663734336330
32633234643662636630653134626235396561646663343736633465343336613738386663613139
63333362306264616262383663626463666637663965316535303635386331663065643131376334
6435613063666539366633386363333939636438383264653732
30616334363939363966663262393036346236346438653333393361663230333731646463356562
6664616537356430376135373639306135313165633836340a323433343462316262343165303235
30323462363566333739373362383961326235353135646435336338616136383535623066623663
6133303562396431630a636239643264336366633639386232346665636661326464623266633962
39323336616430316336343266303366656137353036326662326636633835346439313564626536
35643564383835623333396461363461316639393465316363376361623961353737366261316161
31306635643634333035636234343561643062663166633037626530343763666536623137616430
36376531303366666265386161346365366431663865373961363330383062323736643532663461
37306265373465653333656466343261366635636263356238373861383130646566663634623830
66333063383565346439616239393430636533353535323862343636616338363166623936313534
33373764653464626233373563396333653339336136316436633439303164653662306462663939
35323263333664356438386130336630313031303033623062663839343062386431333761313265
32383131356439363430623065303139346132376435636465353165643233383938343463343061
66393431613361646232396333613263613166363266633632643764623561626364323031303734
64306336373335383566333162356230623936303464663733663638383163666462643166366632
66336632633036613231643636656566336230386139643935666233613662363766343566633665
35663433343664623639363534303139316166316633633130633733613538663266336338383135
34326330646535336234653235633235653638656338383839333633623433313430376363643763
66333961343564363761653239313834343635666131393262626162313663326363396539643363
31653533356239396631393633343636343237353964326639396431633765376366613336323938
35383762383131663462346363303130363665393235383237376562616430633735366334356662
32373231303339636532636230326363376162326633336263643264653361643332373532616665
64393466613538323039393233653038656564336137383439303462363439333439393231656136
35356233363533366439656263623564323066333161323666373232646330346461353863323363
63396135303039613962613433613263633433323533373430336332623735376563356238323265
31376337313638363262373064363738666264373864353631326562333962613735613538393962
65323538613632386136383035653035316437656165333566323533353039336335333130666630
66616565383830646364306561633362653030316161336166653138626563393530663563343635
64633862306266646464383835356664636563346530613635393334616438656133376132363837
61616536343266303663343834613465613335366333316238393730303963633032386662346232
32666338316561643537393064356562376237666433383834353765656163333965643134396638
61663135333335626463333034656530336133663162346134346436333139653666363132363563
61663130396635663639363733613035643234303966363835663166343963323432343165373136
35666335333931323062633039623131653032326330626462393738653331626262386335333733
38336565346231636334633731326164333538646538656439313862383839623365666130626638
64356339386465323762363933613964663739353430613430303566343163333738656666316264
33353066363564393965336637383931306630646363376635373637333461633638636130656232
62386564623761383730653636633364653761373635383436613136643965666231663631613536
34386334376234313465356531383566326334663930313337613764623831333834626238633233
39333532383030316434323930383538633935646165663135653235353765623363333361643465
64623732393333666239326163383763383435663962346635336533316436313261393939333834
34346533366436613265393133303933323563306636656337636133643663653132646465663166
37643061653065356338366166336436376335373366363830656261656136646266363032653236
31343232366666386631396331613161353132346432646363613962386638633037373566343930
37306134656130343832633436626430656661646162663934383365373565306432643639643135
63333234363939386438396633356635333862336530623039383563333839323863323163623932
39363930346337646435656236346330646564656335373431393831646363343436333232646565
32613931356636316461323930393830323731613339383932643233373365303739353465336632
33386239363866643737313535393165373235313933333034303563613261373064343336373438
39373462616563383631636330323433393637396639653962363161303532316563356163386438
30656465326231626561613266636130656566363233633865626631363338663733336165616131
62356664653934306236613366393430353632623637353764343831303063336433353931333436
37646338366661323032366337393363326239306537313431343464393264616338613262353133
65323239376134613036313162643561653265336431303431613266663839346431356135643966
38633266303166383431663366343631653535323332353832353462666234356335363266623935
37613733363438313733313939656535303464343866646236376532346366313832616439343334
61613966666337613364313364336664343264363032613133333237396230383466303433303033
37643334356331386234323533646465613261616230316236346436643338373631383232396537
35663333343462393430316539356331613534346631356331643366626164396539666637376230
37303530306334396561353965323733383030366133613532646433656531363737383838653731
38353137363738333639393034306464363064633064303961316335633438386663646131326238
66383233343738393736333234666439353136336339623961333639633535393462623531393961
61613737383764653938353563613035313335393361356534303961313062653236373661353138
34313366386336656663643034316465396433633132633531646330303238323639373531623038
30386330386165363734303964396561383965313331383839353134363064363265396239373431
38396231613066363363613562343637373837326632633032306364396433616333373331363866
35613462653061663430636138653965636630646364393164383061613639653966393764616138
35396431633037356535373031316436366436383833313237363138343161333531366436666137
61363865336632333061643736613666643931356236326566346563346661333566653237333230
61663234616165613139346636653837336334323337626361313539333434646464643938326235
62646336313733356631323432316131626430323864643239336536653136383463353530326331
31336539396236653462396131626233656235333237616231343537656631663231383236363233
62623530303335366239313739303538326366336663663736373665626662653164376435396239
62346539346331623333623032646366653565653864663739373834643930663965383363396231
62346234643630666566636337343931306232366638343232643435343733636637363031643738
30373232303631396437633230373938616434303435373561373561393930633564653861383266
37633630623332356462373035323366383164326465326465313730303239313262663931303731
66303364313736323537306636313063623266353033616639313066373232353738303230313561
39303731336564373461643961336563626137653762326332393137316538363739643361653534
35373264376465323131376632646461336636633639636363373235653966303737656634323663
35373933353635626664336466356339363836616138366434613936383831653664306533326433
61303162363236396233393866616133303535613166356430323730393066313030316565336631
63373638663362343038323830613863303961666338613731336137366231323366376365373737
63653835393431636264643832333864383439363337343836626636623366343934333332653039
33313663373761656366303763343764363030333033396630313732373930366563383736323966
39653864333561396331383139353535616237643131363466376666623033613534623832626633
64666439373030613135636530326562636661383931366131613661653361633732303036353033
62363931313930396136343739346164303461343863303066303437663562336662623937323739
61373939613438316330303530653863393766323366613732316431396235353633623566636338
39373230336362653438356362373933336566356636383333613261306562643261643163376235
33623061373364663139623562393335633038383634653963656137356438633861313231353130
38323935323234356436393434323766633966623931386230633230343530626662666665623832
66356434383865663832343565326366626462323635646465653438323462306636663363663838
31376463353761643465376539623835643937386661656336663533643164323966346139353336
37383631356333613065363332396433626330306631373332393636353933636662376361346236
35313061363364376533616138323265356332613837373539613365313364386433343132393965
38323736363936316261616364623830613733356466613330333562663662393235653630366631
66633961306663356362336339376538343434386266653431633831323639623833306463323163
64303732616263653734356265336364366435633030646337643066316239326566376435613665
61353338363133306162333865323236363230646564643835313230303564313563386335346532
64306465373964363534356364626137643632623331643063346333373630656633653163353135
61353132626466616264656635313665623261366631393037306436363261386337336435303835
62333864376165353639613332646232366533306530643738353766393166613162323632626264
32356462666563663936313830383462613966316365303638633736386461656461323363643939
32303835656161626665373534343031333036613830376331343531373335333265383265373131
32616134363333656333336562613137656635656333366134366436633865636631646336353335
303236646238653539363033343630313432

View file

@ -1,70 +1,84 @@
$ANSIBLE_VAULT;1.1;AES256
65646130623036313263343431666430653966663232356233373965386534383234313231643234
6135633535643736386537393437303130666330386265640a373136373833663039663034323939
31393539613530613566393431333635343532383763333563656162666631653766663931383833
6432653433343635620a623463316262343663306339353332326663343333666432633463633635
62336430356162393233363030376233343735353038616665336164366362326134333134393765
33656330363532636533383439616435613238323664363966306431356131386438346231353930
64323165373638353132363438646139316337656266323666623033346131303966336638633037
34333635613766346330656463343332343335393835663966316639383133633566326564383736
34323663363533386435646239313866666431346138373430303838333162346339383963373763
35353964306463336134393334316436633763666130316366333062646336393363626538363338
37633033343533326631316631363338613266636539383630386137373461626239656566353834
34653266303437613332306266376338326533343861666330633938346435643561383136316130
34313739636130343665306335303538303365326336613763613138376135656439663562663862
32313039636366316562313562656662336563613065666662386237636636386237313861663232
61643330386635633339633230376565663035396136636364373237643238336534616436623835
64633866373262303736393032373762616437653030666264313636323539353233663632363532
34323939316139373032356632633165353339383665346435366361633261623838313937333837
33306430323334366436373664323164366661323139376330326534346234396331376634643065
35626538616263376437653865626161336435303164343834613138643661656261643234393362
32623737303131633863663731636262343063316663313565313238346565326436303863663432
37633734663331616561633331633833616232346332356431363134666430313435336134633361
61353633623032666535643561383264303766333636666438333038323966636566373133346530
36313566636337316265643563343965623538336161303165396337613462613530343864643431
64623233623664393237663130386366623065666532303633303964316331376338336461343561
61346430356238326333323835636465316438373266333864643162313161316264373538303338
33336434373565343761393632613632333133373135373666313439663034396536313766373263
38316434633461363533343063353139303466643834383836373636373362373538663761346464
65333534363937343261303336386431616236643361396264663532316163623438333533346662
33303566346161643839633031656538346333343233363839343733366564333735376264623034
33646566363365653639333332393632343530353339336461323765386133613539626466643962
30636332393464393264323736313130346566633461623331373530303534303835323333303266
31363333643834386263353065366635663562613165633038306637333762663230343662386666
35316533653465613035313439353263383736303530666366656539616437346435323365636236
64373431396131643363346437636465663566663039343165633863323261386462363361336165
33663738653839653064613561383863616463356139393032643730636336616239346434373234
64653164633961336135663162393362363362393338346232663163373136356430356464316562
61623461626164386436383838376664323139653237376164623933653063316566373437363230
62303561353164356665386135383963626531313961653936393736366237393032373766393163
31383262653530383831353061323237356434313135396332393563363336343466383437336266
61646334373632643161313639366431626134326532316637616134616165663061316533356266
35373337636464396338386133633963663034383363376666623130653531646633336431363862
33343739313636333537636462303534386139633764333563613064663434346462333661653466
33316138656238616534653663633236623466373964376337316166366232636362636230336361
32363639343262316164356361656135383062346634643734613062623962336464343735353833
62626335353363336561323039346462386338393163326466323935353865373631313965666466
38323132333465356133383639326461356162303564623834323965323735356230363938613865
31356461623631316237393837376635313262383336653931613432373263353930376466626434
66373339346537323338356464393737333236373366353831333230323866393061346564326238
63666263623665653533626236666531383137653036386566333735343734613561356335633665
32653835656538646434613732306566356636626531626130646331376130613636333238643363
37353764393135313164636466373036346466343163393835636265366330393566653335333234
65346230333364633038643130633666353639643839313761623830353162663932323231363261
62383861663832323733323366623130396561363166313637393935646237316333623733636234
66623962383533396136383733333230623838633966346162333438303230323062376335343532
36306133316136656539646430346338643065336532343235636339646339616161656661653735
61346538333262383363353634653666323533626530393839333361323362336434346662663036
63623766633532653232316436613539646433346235393531323738386233353830383037396261
35303538656432313561373364373062353531633332356430323233303735363130623262316536
34303134356135373930333338663966306237656536616365646537643937343262383634616234
64613434323630336334613537353333386636373363336531646436373938333136646665613433
63313438623564656438623239353930386461623534343464363462643131636464363834383263
32353632653930346431343237316333323139353632663330393165626534633939626430316563
38303538376231646132643262623966643561313161333462326637666566356662336434366462
62323662643066303532383566363432306537353131653930663039643033323536623966643531
66616634323863613538393338373132363063666438663335376563636335626561636234323834
65326563336331373138336561376565313965393136336334646437373632613131396666643762
63663865616431353535306534616234666135626339633864633033373032313230373664613433
36303666396435333936613866303366373639346166346433333362663862616462353039383138
6166
61323535323135336533363334656564613938343639653235376538373961636365623961613336
3337306633303232666362393463376135656335343839650a376432386137386461633838646362
61393265313163633765623461616634613831356438663037653632373563643364366430353034
3337353065353536620a376130336164663136626536356135646565663738633732393732313538
32336539373463353762626137316234353232356161626236386563356537643336666564633836
32363633326530366266363338623537373533376364323236633233663063363263373135323263
39316461373865646232313364343831393837326237396464303762376264386562643436326336
38646462636638376131363230643663376236383636343363626235306331623835646264656530
63363737663964336335373536303031663937363638343737636437303633653437653130636632
35386430616335313633373463656332646337373466656639326636616631633739333166363538
65313335623465633462393763323038353533336233616431343066616561613433303966666266
34656666613333373264316666666664333361383261363162393061656135643265366265383832
37623733393135333562613130333563396235643737376237363739656365633634666430313139
66613365653436643831626532643939386363626535346538653535346565653234623331363834
31313164333065383635636631633334323430333737383732303839626561383135333666663734
65643830303763643066336261633630633533653736623334343135326539396335613238323062
35643365633634336432326665343564663635613439336331313563643265636662616165376364
66353631313736383763393963633463653435373739376335663034336165393735363238653132
35653830643563653932646262393839376234303137623438613538633362623735396639373033
64363733363162616666383130646166346565656339303263323435653131393963323664643133
31636630633037356632363434316566666135303566333761376537373638363362393865653530
63326430396435646565356664373261356333336533663936366638383863613562613963616437
34333164333331666264393930326433616139343533623534633031383134303165373835323263
62353866643263623530373736306564616235626136623137326334343165323132323936383834
62383630376464393764303431633831346566633361366364613561666162366561613462393432
34316235393461653033313839326232306330343332303832353964386539303761333831633131
65396562373064613933646462326238626566643237653332633735663565396639333365366438
35316631336161386265666139633862336534336139343439653135633637616639363030643965
37636465396361643764316535393363333861333934363432343334303265623832646362626637
33383666656539313139623838373636323061346332323662613131343638613138616632636466
62346664663435343866623366346664643936376136353861666364363636633035323138366139
39356166633430613365636332616631663463356261306266333031643334373136306136356336
63363262643564356132326639303932613862613961306464633333643962653362663937303662
31373564363965383361663838626431323733633065326463613631333732613163666430326665
34316237326630366633333231643765373537663535313266393066653834363032616330663534
64383664356430313930326431343632363936613936393063383033333634356637613134656364
64396430393231363232633732633364633734643838373831643862633837336265643637343562
31616538306462363337633462643264303661643333356162643431666135616561383734363166
37653932616136623935333436396436353063323835663263623631346439626439353530303636
62386261326434326465303332343939666534643230303866366130646466356261326338303832
63616534336361323464343033383465396139346366326565396262623738373738356631623338
39613739343863663637393535663630373162393461383062633466346433313232636136383933
38393564336565323037393664653635316234613461323235656336383330376639316464333666
65613136623536636538663233616135343732396138313336326639326631663663333532363331
63643538633930643164336137623432396233303635363037336330323566653363336537356163
62373632343636313938336566313166376564363334353737636431363335643631363737636333
34333433643631326134343336663864616331666231346262623530613466343562376531623632
63383432316232346336336139303361626337336437633834653338323566346366366239663533
30333061356664343765306164393837663937643165376336656336353031366136623839623932
36376536343266313836333433313061316366303038663938656134333861613239656330633939
64663133616631613737386532306133303738353262316465336435616338386561323234376166
32633139323138643034393137303664383765373639386235633364376231353137373161313564
38396165636537656564643531663430373031633962643535396530616437623335643963653537
38643630313339336263306331363666623239373461366130356164323261396433373537353732
33306137343439656334366230626634383163656238626335323637323565306565373765383533
66666166656332333537323530666334346237326366663434333839373662366363306166636162
38633832323237313162653866323066346232643938633365353564353833393961623234356565
33613463643031643132393433663966306633346334373033373330346236643436636333363338
65366437353634666539646532346162643366396132333566333936323933376135323234393333
31623262373735303033396330333030303737623562343566353364313636333936656663326266
31393964646432316535376232623766616239363131636638373563353961363735336334656434
35656133343134653734303964366263336437626461353730366332636235383866376430643836
31336532343163393166616132303566363433313565343131366231393538653264653230643236
63623463303363383636323038663363336630646131303530663062616131396266653431633031
63356164316636336333666666333330323162666466376636363139323362666633303030346362
34373038613032333835353736653439373535316162666136663430313239316666303134343961
37333966666166363362656539386238303636393335623136363439336231316233333663336365
62333130336263373731633332306464383035663039653839333835396336356137643237663665
35656436326439643831363033326131343162353934646163336534663233353335643064613632
35636136373231393531633034633537623630613561623562343332306430356536353039323531
36346230353431643464383761303131613739333263373834363965613532623135363732343264
65326266366330336439353135623065336666613062393238656631656339313363343731313830
31313339313836346630363061633832313939323062323465316431663665383331306430393566
65613235636530313634656330386365313633313137363432353263623963643763646437306366
32346166333461306664666530613333636362343831633736633462323533306262333034646465
38656166386564393863393937313466343962333665363563366234393535353238363562383938
32333933386436666364393937393936383063663063316537373763336635633637383464653264
34643232386430386363306131303930393935616338363965393061646565393433333562643439
63396230636265346361653763376361633761306237333533306266393263323438326434646463
63303564313433623164323636376433363236396365356634626139633637326266643861326232
37353364666264656135313961383833306263323832656336363466333335396665633932643938
32653034636435326134316233646166646233663436373333376639343237343431366561393233
653838383763626436656633653731323261

View file

@ -0,0 +1,57 @@
$ANSIBLE_VAULT;1.1;AES256
37616361653036393934653665323334356237386135653530316566626662373036326535366433
3465623930326136623261363561626338636431386561390a393862386132336465616631643837
39323366656465333364356534666364653532386266386537623830313839363233373236336464
6138303939336536660a303131383330633033623266613835613565633632653966623762323031
39653861613431373339363630356230666461356261376530373663636665316130656363666137
65326366336637643132393664333464656536663438623461623633663937353832313363666530
65636164643264383030656436316161313861313531626564643738303761373166383339333934
33636637643536613434316431626464623237386133626330393332336330356431303131336137
61303263313533663461653839313033323465613665366531393933393237316463316339396463
63326665666133326636303139346239366462373064396430656438633863646536633937356132
39643037323161383139663863313334383362653332616630333762326665343231643837656664
62366663666236396565653231663937343535666561663530663863316235643062393732666666
39626634306435333335666539613733353463363834353662383235313039376261613731643961
30353731653234633531633161643433353565323362343030303562313164326230333062363837
32376232363739363530376632656139383765326162376233343961386438653237616432396533
35306232343461663834373132616339373563356162616430613064383766646239333666303937
64623537323465333030656463643233663130666330636236663334633139636661326238333261
62303264646531643464393037396566656639343662303134626565396664303532356566386661
30653833326533323363313064313263346138303666653731333739646262323533653037646234
63656333363737313932623837306466323665313761323337623563623637323431663164313730
37613638323832613461353766653464386337333232663337663863303266393133626436336565
66313866346532373066613235623863316263363538643639313036303837363638323666323433
35333332316138623438393835643863326330316365643937376138333232633563353435343762
32393638643339393334353963386161343439333836333764626332653231643634333330356536
38356436343036326439313939633534353931376235613339353566333539386361613163653932
64626637353130343331626265363366356334396361366462383762386163613166393438646236
64333237616262623862306262383565343333353766376566313463613036613162643563623463
34636139333433346334656261356630353865313231376637393538396338663137343436663931
37366465363834346165323362643431313765316161376266613136643237626431376534633938
34373835313864323637666332366665353932353563616663313232316136346139353331323432
33656139316463666539616536316133353931663561323462356232313663663930666231346265
39373564666432663638666337663139363337333031323039356134333766303164626665373739
62333464353664393337613935336233376139656262333737353664303536303565633961353364
30626365333635393834333366623033326534376633666464343438306130653961353266653939
38396366616236306165653839313265346639356236613831396663663436613939333232353838
63653361383839336264376565363933646163396331653665393931373838646335613730363162
35393266336231616233633365663538616431363737303335666138303735663663336434396336
30336233653764636438343630663265616632396132323132396164313836353130366637373232
34396231663537326532306666393466663732343663343632366161366238313932656463393436
66623538656339323761386664326363623631313965653532376632623738633161316238306234
66306134306530616539306362623934633138393937633636346635363665613232663936613830
30356539323064316630343161343338353237313566663734396331656139343762386136633539
34613865656336633033643335383535343337646164393432323661396264363138333062346364
63323633636237353139356430343761666639653062653363326331623130386234663035393766
32386238356535643165343566383764616266663461333230663863343430613565386338333763
65346535303562313162366437366230383030346261336563313466313139343863656530303963
38616563376136313438646161656364366264333265623733396132376434653862353962306134
31623831326334616664663833363133646535376339613863653866663936356238333065303635
38336365636165336662373734653537376365323966313235633731343163366662656564623261
31333539313536626137663863386137323237353439653839363663373864626232333563376561
32313263636466353939353836386432393932373036616661656666303433346139333832663837
62363764303062666637316634383936316264396433396266343164373064393365386634633866
34633366303233356630313033333035323235373030386562613237346563613536623434306437
61363830326238666139353063323261623364343662623566366334383931343366646135313166
37373562386237383236633338636334363337663832663766333762353632373366366636623433
33623233373634373338

View file

@ -0,0 +1,5 @@
---
dependencies:
- role: nginx
nginx_acme_sh_domains:
- headscale.polsevev.dev

View file

@ -0,0 +1,9 @@
---
- name: Copy nginx config for headscale
ansible.builtin.copy:
src: headscale.conf
dest: /etc/nginx/sites-enabled/headscale.conf
owner: root
mode: "0644"
become: true
notify: Reload nginx

View file

@ -0,0 +1,39 @@
$ANSIBLE_VAULT;1.1;AES256
30373762666235666235333030383830313862373435303263383263386535313430396562383565
3764653433633633373765653662646461326431393534320a633734626164323536626538613066
36323661313536393233376133326535356231326666336433396365633238633831336438646534
6466353735326531370a376466323837303238623666643066646562663039353934613635323632
61363637373861323339626234663263333765643138313637346537343236666361623135306235
62333539643765623363613330343534366639333965346661356135623864343831393062336532
31366364643836643161333035356539346364366331356138336336313239316565663637656235
32343061356465376262656535653139343036353165316662643961633838376431633138383765
65353635613263323162396461343635656565656464313930643938366465303465393336623434
36333430373838323761613965316435316430343230633933346338633433323237373636623061
36643232643839613362363139623666656431386638626665323533666564633536373766636138
65356432643936663564386632356433643361393837643537656337333563663362386665363233
62356138333061663832656161656636383964386235396637323836386233323138623230633237
34663438316364623534313332393864646439393964643435326431636437626364356666396365
36653564663634386231656138623233366664613337303865626638306332663565343734393036
61336664366138356237616337343863346530326461356663663335336230653334303861346431
39373831323361393038306134386463643164353766363732346639353437303436633934326638
62653638303235366238643430343962373366396633343832353336366533663831663536316337
30643561353338343239633966663033383830613030383665316631383665656136663962663062
33613634653138363463383433336564663862616235653432333363346633653034383831623763
66353036363934333232613631616433343836313530326139313665306132656331633262346538
66616465386431363139383435303862376231623536343838303730663264353563393563636635
63306633393236653635366165353062663039666335356634646566396537313162623635396636
62336566343234653763363962336361666331363936383334383035316264303836386631353834
64636266653066643538396639366361383133346136613866393132653933613761643163373335
66323433353136656664373863353966356636633765656665343461366261393537356138626130
64313330623337623732303666616161336564353966386332393064336637343833643463316461
66383636343137633330303566386636366630316131333863373539383734333639346432303835
61666163306164623531376233386531366533336139323537326135333530643666386565613165
61306431623436363535386539643638303231376239353261313034666538363838626335363036
36303262336666623363353731376464333634653730316666376132353930336662336664373933
36646166663630616335336136626461373638393532363264616330336165623066376638633865
62646365323762323463363539346464663738636561666430643436383964616639313939386361
65313362353237636535343363396566356635373333336666376430626338663861393834393137
38306535333331373837646162366164393238396261353238363762646364313838383466356134
35303463633236636232383762333539323938656634353761383839633838373463333134303064
35356636346136343235656631343961343338376639626139613739613233653938646665393133
3033363138663962616430383136333634303331666439313135

View file

@ -0,0 +1,4 @@
dependencies:
- role: nginx
nginx_acme_sh_domains:
- kitchenowl.l.polsevev.dev

View file

@ -0,0 +1,26 @@
---
- name: Make project source
ansible.builtin.file:
state: directory
path: ~/kitchenowl
owner: ansible
mode: "0755"
- name: Copy compose file
ansible.builtin.template:
src: docker-compose.yml.j2
dest: /home/ansible/kitchenowl/docker-compose.yml
mode: "0644"
- name: Start docker compose
community.docker.docker_compose_v2:
project_src: ~/kitchenowl
- name: Copy umami nginx
ansible.builtin.copy:
src: kitchenowl.conf
dest: /etc/nginx/sites-enabled/kitchenowl.conf
mode: "0644"
become: true
notify: Reload nginx

View file

@ -0,0 +1,21 @@
version: "3"
services:
front:
image: tombursch/kitchenowl-web:latest
restart: unless-stopped
# environment:
# - BACK_URL=back:5000 # Change this if you rename the containers
ports:
- "8000:80"
depends_on:
- back
back:
image: tombursch/kitchenowl-backend:latest
restart: unless-stopped
environment:
- JWT_SECRET_KEY={{ kitchenowl_jwt_secret }}
volumes:
- kitchenowl_data:/data
volumes:
kitchenowl_data:

View file

@ -0,0 +1,32 @@
$ANSIBLE_VAULT;1.1;AES256
62326630346634323662623536306130313431636136343361626661643839313166643233366431
3462353865323462346264616665633432623336353838320a383636396538616439366232633239
39363865646138306561303037613138336336306263323133616366633839336431306438333037
6134656133633561330a313931373566313933336631333764393532313862666434366261653038
66626461386431613462356537313739343230313530646236653063356261636663643737666463
30353539383965396161306466656639383566346162363466303433663634393461313832666535
62646231333537396331623938613736626265396362666230303334663639623739656637306636
66343962643365646636623764393866303438363530323038353565643063366332383334393266
61376135303931656664623239353265353837306133326664373062393666656432373336346562
34333331373862353732383063363866373635393464643337613234393137313366356131366438
31396638653938636263373235653139656666313533356235353832303437366437656636623038
36343233356137396561373666393962386536613330616236613661363563396461663862643335
30303764646337623430643139373430376132346536633366326234396236353532303233396331
35316366626436316534366333636431653037323239303062636564623865326231396138343865
62636630366634623935396165386266623133373363653536306232333436326132383130303166
32353935313639303139336134303861306561646361363835303561326536336465306636323731
66323961623031653965653832396661306532383835306363393135333338646565633335303464
66333766376162373165366161356666386430643065313961373565336230343632646236303163
36386237666234386663333261366631316164333165643930303962613137613436336437656530
34653438643031363430623066386339343036663363653365363662636533633832386661393636
32653830623436626232636135313137653234386238376564613931643435316562333836653766
63363832313130333462643032376266653331393265626239643439303737643730346636643037
66316639383938393537666163626630666161353832653066373963346365613661333637303431
65363464653934353030353731306164323930306534393762656563613430666630393634613239
66343866393833656630323837303664633765636561623666303261393666643564356362346532
62643163336539386331313032366632323137363133636363626433313836346530643738316230
39656361303363323535323762373139363030306630626234343931626639333161363032383361
37346236636236613436306465636266653231396562356136656433326263663237623635363238
65653635663335333063373133303362336665336337643235356234663330356534633835313561
35663036656638366336326334386461313663633662616531623738393636323563383738363734
636135366236373762303134633935303730

View file

@ -49,12 +49,23 @@
group: root
become: true
- name: Set default CA to letsencrypt
ansible.builtin.command: >-
./acme.sh --set-default-ca --server letsencrypt
args:
chdir: "~/.acme.sh"
become: true
changed_when: false
- name: Issue acme.sh certificate(s) (this will sleep for dns_sleep seconds)
ansible.builtin.command: >-
./acme.sh --issue -d {{ nginx_acme_sh_domains | join(" -d ") }}
--dns dns_cf
args:
chdir: "~/.acme.sh"
environment:
CF_Token: "{{ nginx_cloudflare_api_key }}"
CF_Email: "{{ nginx_acme_sh_account_email }}"
become: true
register: issue_result
changed_when: issue_result.rc == 0 and "Cert success" in issue_result.stdout
@ -62,7 +73,7 @@
- name: Install certs to nginx
ansible.builtin.command: >-
./acme.sh --install-cert -d {{ item }}
./acme.sh --install-cert -d {{ nginx_acme_sh_domains[0] }}
--key-file /etc/nginx/acme.sh/{{ item }}.key.pem
--fullchain-file /etc/nginx/acme.sh/{{ item }}.cert.pem
--reloadcmd "systemctl reload nginx"

View file

@ -1,8 +1,11 @@
$ANSIBLE_VAULT;1.1;AES256
65326333303132373162376233643737636430656266346532653861633262666363313932613232
3266353232663266646162623138613530656339653038330a376431303736336165333166633461
61396665323263653137363233373838393863633038376466393636363231636636396561303134
3339646534306133650a363863646666303637356230363365383037383432313837616330616630
63643839393766356539633638393761326165646139336230323732396538343735326563353138
38323064613066366433336165336364646566353763393839353134366334666137356163663339
333135303861396639653832386431663434
39373462366161663263303135333834643662626464623631343835313834323633376138396136
3534373864656231663035623561383931363837326435630a353637353063313834616235376662
33373032353336303035376231383562313230373037643362316437346530616166313138613734
6139656562396130610a616265613432666264643361656337313165643730336631346162353136
33323535396234353866306163353366326366313361646231656436383065383436393061366263
38306438616239643334336263653662333530383739333333643038396363386633343464323039
63376666663964353965363032376530383034313931376635336334656164333365356364303061
63646439376365626330333066373238323063383764313764353563353836313033393462633231
30333930626266306266313731383861333339393735666135333030323565323634336135373064
6331313232666362633062306565393464313466396230383065

View file

@ -0,0 +1,143 @@
$ANSIBLE_VAULT;1.1;AES256
39346532383531656139623430356531396235633937316566393434373965353332613534353066
3961626364396134323764643035613466323534646139630a336136396162643438663066336535
32653365616664376639616333626666653533353866306466316335333732636462323163623230
6362376631306136360a383564353839653062323332326163623661386239366332393438336238
36656234636263383239333066303565656161346530376462373561666534376366623962393930
32656130383138626362393536643961306264633436376164393066346638616630643362393132
61373637623566313662313562376262663964343438313532383764623862366631353562353335
62303630326266316238633632623332623962333461353432303933343161343135646433626161
39616139626638303835666336636630626265376235376466366665376662386432303361333433
39393432373730326138663465376439353835656231396537666566633964393334373839613536
34386232646432663335623233396464393761373338663834353038353031396534356232383364
63303761396231343738663030393330353035643831393338613339643465613461303335623866
32336362336234333336343165313332376562666538633661313636376566386136343264336530
34393435326466333731333665623962323535636534306131633564376262306434646232363731
64653035313134376331643966383938336661363761363430306437383935623762313831613635
32376463396230653934363431366636343338313734623230656464663939616633373861643737
37323261646262626331633739636431306464363235373933303332303333353065626638626336
34306534666437306263346332613562633135653631643631643432326466363166353633613438
65303964343934333739323563303965333639373865323336303135356134353730336666616333
30343961396566306666616462303263333635373531643432376531623935343537346264343264
39656135653639313966306235316131383735653765323834616462373935633961653336663662
61643665636561663037336564353432366337653233386139363961666665373032303561343737
34656438663430656362396432643763343337356631666165393065663939363830343231383533
33343866326337616635333435653866373433323932616636393631666332333337326135373066
32663637313534656461623762626234656531343564663730633132376632316639663339386334
66393738313265636636313337323232303831623639613564386630343938306363663361653365
63393339306636663432366436666564623834363732313939396263383961316466356131383331
39613866323539333735636538643561643631613664643766623463643832656166333264643736
38343432356637366362613362363164376331356438653737616132323235323634356366363939
38653739613634396331656432643035656338626637633038396535396531366431343935383966
38663339323830396166316634306235636230333638383437653734376332386539396132663062
34343731376538653766333330373264303465663234643732303535303436666136386434366532
63653562623939663465666564613432393764336132313030626461353135663739653766353338
38386235306334363834393230643931353736643733626462343539396538396163663132343263
39616163616532326566616364656333393635363861626131373761336138383931663830366464
66303065313235366663396433356632346232653566643762666535343839326263336262303663
62363439343138663966343861366661313161663764396532616261626564336133666135313931
64613330653937356433623937303239333662633034376338653030636330323737343434303937
37646566633833356336356435326164353337393762323761613131373437633866643636356234
37306165636632663864336261333765613839653665366635363637613064373061616263383037
33643264663764643634636531303230316266386361666663366539356361633561666663333265
61636465363536666565356430386438626338306635376266363334333561393835353330383535
30326465313731666633613564326535643063313832613539396138336464383233353563353765
65396261333235313930336662656163373330626438393731393266623965613134663365336332
39613766306436373138376139383261303533666535356331383930616530306232323363383039
35653065623936653433373063653861393936656661633062313237616436333835346363626337
65303934303461383561663136356435336262323466326235313633323837313663383864626461
30366639353534623839303337316132393064386238366237643831306335373932623837376665
38633133663831316366313232633139663463613432636239353666626138323335336166353835
64663330356330383232366661353665623364346538623830353832653464633565656232303337
33653534333862376536353536333939336434346363346238336638626265663639646562353234
35623561623661666433643964623639366665393838366536373439663531643439373033323139
36333639336464323933333633616335323138396437663233303734663539376562623130346431
36343764326135383664633164306666363764373064623235323663623431616438653330656364
62623433346461633863643333313435656139336634373739373264636638633561393063316638
39656462633530626165346238353133366561396439643930613463663232643736316162323466
32373630303937363135613232343332363630646235653239366231626330643331623261356465
39666266353131383061396166323238643563326539623461613730393166663163376532343461
31396365306638373732653935353930643730663765366562376134333466306137646638363538
33613733663437333135653037353465336165633863363336326333383761633933636466613962
32666139613835316130346662346236303264616634643137333361323731626135653432656566
62653161373166643436376534336166666635386337636465383435316236343262623236373564
62313865323135303035663038653438386666363137633463613731636266343536356636633634
30373661636234336435363961336132376231623039336665363931613664616632663761313664
36383066373134333834356537616130653066306662363639303631363464623436663266666530
33663236663862373135653665353536653033346137393665626161656664313135346439616333
64623061623232653134663435363264363537636564646634633538303231643664613664633437
34383063383933366461633166336465336261363861393462343530616565366637633161353433
64643462396633613839643636353835653330333336666236663235663437326139616137626634
32303862626134373734396334303531383133656539613439616366336437343761646266333331
62353137333431303866353166666133353833386538663066663866646531643437396532663365
65643139616265376238383736336162386438373136343633316532316632643537663431363730
64633338316437333836313735333966396263393638373334616466623730316164613236333361
38373465626566633663663139343239663139626434626132323865303263626231303839633639
61336666636438623631323463383563373734343361353431396537306136383765303230316565
39313733393337366162343036633435353566666631353061653762323437396138613530383438
66336361373163393030353838326533626230383364383461346635323261333764663561656230
65353765626561323032303635646431653564656133613861663563343630326238613437356336
30366436616466353034303962646230356463316533316433393966366364656362383364613961
62663537373734353163303332363137636435663864643632386433383836303864373866613238
39366434333934613239313464616439613262306163666361343166346233643063663934316161
63373038663966313164383534616136346666653234633365346635353765613334343130306566
35303432623135643861623038376662373466316430646530336339343231316262316535383137
30343863616636666265646130663734336362326130666562333531363866313133636162333835
32623037613332633636646535373838613861333133326335376433646664353539653130656265
38373435313533663235343466633265653438386231626233633361313735313963393432656432
61343764613964643963633164636331613535616132303037643464393433313461363764643666
39643561313338663965333033643566373165623163646330363662366432353334386232623164
61633266666533336563373465623964323162663132663234616238646133373362366262363438
31323437616166306165623462363762636335316436636330656635383438363861656233646231
32346265356662653664336363353133646166396338626436343761393130303632633030313832
34623831323262336265306266663966396461363133316239643332383834663537323632363930
62356635306365326564633561613266353030363538383537393535363362323236313563303434
31633964306133373938626463623839353537393430343333303338663637326137333664653866
38396266396338643763643361303961633561656638643563386137376332633338643034353132
37663466363962373830633432366132396365356339366261373961303539303336643264366636
35636664363764383539306266353939626434316638636636363232663335323763626534393233
31383366323763356436633739343736376137653130363062336266633238353237333266636165
31386263376465313039303638656233303337646635623033383631333938376238613361656636
31353966346337623731353737613933303966373264316262396136353633623638346562646136
33353034373037363666373761333862303337373934363331623430323438363937393934333163
33316130613030656436306563333965383665393431653162393362353562393234613632323733
31316661613837346136653838643963333137646163663364303438346466613238326236643738
61306135353566646665336361613437343165313937626339353535376532386230623535383037
36663837613966336436663439353063363664613165303933656133313435373334376432323037
34383135613533616162623938383263613437623963646336316534323334346134363835643331
36353635396265323533636362346261313738356438346637613631653866646439626466663531
30323238313665386338643139373536653738373466363136323261333739336565623235623231
31653739636539343864333935383264386237323365343036323934616161613134363239613664
37376264663266326662613830346237613136303734336439383732646366356464643137386535
32303463626439613565333762623532643439323837353930623534353832323035303031383230
36623437643862633365633635393035376533373162643262643234346666373664383135306434
38313062383636363831323839656232383564663630653738313762376430363663643438336565
32656265633933383166346636326530303266363330306336663930633163616565626166626361
34363830666365616466653561366539633466366338313064303561373539383763326264643939
30313537643466653835663363343737303937313733353133376437383735303262356432343034
36346236633463396336646663656334323433396162656666616330386662316161633935643231
30353633346466623637623337623637373230303332633964636162323038323135623137333730
61656337333636633337383633666561363838646361623937613737323361636361373336313866
64396539353334633330646439393738663565396665376433333335653632333736663863383834
65356664633062633132323332643861306139386334633237636634373866633862623136393561
66316165306337383336323031636430663433643535336562636331623533363238393836643830
38663837316236373964306436626336383936366538346465613330626338623736333731383265
35623865653834336634636536393039353961653631343964356561323239326233623236376663
34383838613363616233343865643366663530343263353565343561626265323434306433323534
35613664663166316663336339653032366566616665306439653334373662393134356566666366
33376566353966653030376536383063303931386130376566316439303635336261313865366361
35633535636362323834316234666533343964613237663035303631633465323764333636363138
35383666653862336433613935646265306237646234613266353731643563323238366261373433
31366636353032623731613035366539656235363863396164313663326361333238623162303831
65373033656338306239663837303763316137616462643833373963383366333731306139646239
37363061313838363934646233303265643732626632316431333665626632646631353039353263
31363062356632373036313261303535626530396336393532663464356135653336626665396237
65333839666333366364313037376463303933643132396161323939313962613738646333376634
32666234313136396137383736663864616135626337323565623361313930663161323062616435
39636632666362653066633537303836666263333764313139383033656330643132626266366362
63663830303437396665366237306134346237303038333461643330616634376464353235396366
33643866666565623037383931356364326336363534323866383061623962633966383837333438
39623765363762306237386564633162666634396331383962303136643463613761323231613461
65353862663638356566616136373837613537633166336166323266323332343637653836646431
64353039623234373432613435306630613738653931386239303333656362383732663734323135
3232363062656637306136373462383538633365336633666335

View file

@ -0,0 +1,6 @@
---
- name: Reload haproxy
ansible.builtin.service:
name: haproxy
state: reloaded
become: true

View file

@ -0,0 +1,21 @@
---
- name: Install haproxy
ansible.builtin.apt:
pkg:
- haproxy
become: true
- name: Copy haproxy config
ansible.builtin.copy:
src: haproxy.cfg
dest: /etc/haproxy/haproxy.cfg
mode: "0644"
become: true
notify: Reload haproxy
- name: Ensure Haproxy started
ansible.builtin.service:
name: haproxy
state: started
enabled: true
become: true

View file

@ -0,0 +1,174 @@
$ANSIBLE_VAULT;1.1;AES256
32623066333562333633393232343262613266323264313766346562393736326336356233666562
3565343565363436666465343131363837353932643635620a383038373034333238623666653834
34393436383765363930383464323461383135366165373064623664646432643136363839313062
6233353739393835300a633061356337636435633032393038346363633335346238653738363534
35656334333434623932643834396335353862383138633131303365613966326463323932353961
37336239613037336130303833616664636238343432663932383538373038623139383435373936
32626236303166303862613838623263363432636638303865363436383234656563353734353164
34303436653863323330363535616564626562303735303930393839383535626636343031313563
33353137323366333465623462653031363365366138373764656261336333303236623461613334
35333331353033636431663761356432646564633563636439663235346562653039313337626362
31636231396539376534363263376631363066353838373866366333326233376564346431373039
64663663373836343738333335643766316233306133323164373366396635643435303738316336
61396165383537383130396137633934373539326237303233663635383466313731626538333638
64626238346538363432653136653034363937313264333736643730306465333765323963646136
30383036373037376166326434636635333865616133393732316630643633623032643933653566
32323130646631356661646133373137663437313835323663333264386164373637326634366161
37363831623838316164323037653963383965613666633730333033356261336665653530303732
62393533653235323162643430393638333062636635643135396536343665323336386364363365
38386234663062376433626638386136626239346137323838653639663761636433636339353561
61663761313232396332626638646336613933313963363062386661633035333161373737366466
66623161376337343131356639376231643135333361326665306463333937646134646531336434
31666663613531666436316531306331396166333432356234306137366530396539653732313237
62306631636162643338343861376466653731383362313936626330646661336564306539363535
32666538356534626564646366333639626462393864393164386136316462323432346663646361
39363262633736393333343066316539666363316565333063303834623236393137333532356261
37313765316134396637306533633764323530376439343131313236313764383435653732336263
32313562386431353164356565653430363033316631343262333164393530366137646639326437
36343961306439613435303633316530613765393837303931363965393435373965366363616330
61336434653863636565333332386138313766333635656139353361653766666533333130336130
30656161303535306530366334346663633166343865326463626232643734613537333536616362
65313565396135316135306130363934613135323033376634386639333966643831333938663138
37373636653461636430343161376237353239303139316562343662363764636137386266636135
35396136336237366165363762623264326634313730653035383639363436356337616363366232
36363235366137313961666538656564313631343431383033343461326539633361366130613031
31656435633966353738636535613764623332306666373533393632313462623733336334643864
35666639393438393331636565316134316263373039383161613735343033646338633464313938
37633133336636653165626332666565633663636666363762303562653932613665653632303331
63313334376431353361353738323730313165353831353066343038346634306633663834306166
66333932363531356531643864303261383535313639383461616239613336626263333039396537
64646362393537613436643735663530356363356166653830396365326262323932383838353834
39386434343031343632623938336633333032393363306533383036326633343734356439366532
36383365333065373639633466326236646433646439653064393263303735663331343262376132
62613666336534306631313935363031623034386635383166363435373831653634646362316462
36656532646631363063643735666131623863323335613135633531646666653232343063616431
30386264353330363933303662373637386438323866353265663537316131326533306566313661
64343833376161353234646536633135653431343861386537343961316532363432613931336336
37643039626334373765396465623338386662623764333139393035396364366632346437643831
30393731393062626166363334343663366431623330396639613565643836653635383061333762
30646531663637366463383062663538336663313362653335313230313830663662643537613638
32663332306136396666613464326134363664326365663465383135363563666538376132393966
32383733376633643834666364656635653663653138376136386430633534333335663734366236
62613939363739306239656137353939323364343834336633666661303361323839656661323862
62313363393761363937326463663761653061336266336361633438373034613634653736383262
32643161353331666564663865396562316463313662663763366535633762376533343838653532
64623639666536326638323936316430326234656662303866643235386137656432363137613163
33643835623131623836336566633930306438396431366138653936363065623138366134663361
63353062613863646561326561613138316566656235656261633865323134653235326365343138
61636130313865353061316634616534386130633263393932393339393330656134303231396262
66653562653632363138313262313864333665663434306632316662396361393066643935636435
65356638303961396635663164323733333435663931363133643563653430656338346336626538
34383864346365373132386638343834313736663961303332306232393635653634373663386166
36656435646538626163333038636630336637663731633166363862306532353366623862306536
64626131333139333266633861323666333431396532333161646538613531623832303062656139
39313837386662663965346436323464663338396636383331353535636565386635613064346661
34383864346436323631653631626234363636396361653364623561623339636433633838393830
64353939636666323636623934626361613636373235353562383631306134623933346235346334
34393135323162396137346136396333666666373637646432653862363335336132346433363464
66646137623939373033383432326338346463383737356433623461626437373733636635656531
33333532613331333638323439323465363361303030616366343261316462323666646261613331
37353734353565666433633964363638316432633061323336326131643333343139353362326564
39303534626536343235366131386463313739313839376231376135663333386638363432623262
34316234643733663434373062323965323833323065636566633564373831656462643931343132
38633439623037666161666135613936306635336435643338393030343463383235373638633365
66323366366330643862383766383833663433633061303631353732356639643362313538313836
64383962326238346131313265633065643335353730396665646363303033396531373537323063
32363362633131323965646261393564316661396331623764636165396662333432333936376534
62323237653464363739333336663362303231633534646461393961653462386335643036616161
39346539386137623435346430316330656664643431316434313133633866326631663831353837
62616663396663306330336238343533313362646330636337366466313662386362663635666232
36383465353039666262616235636230393463316535353666343164323563316463333938653031
37333436353032386235623735666163626436343332636536313436383261666136646531363234
39313330326232353837326162623134386637396233313166383132336635656361333632356331
33373930653037373036653933643863353735353835653765326661333232353262643531623163
62613439326539616135376365363937393662643439373765303931653935323661643561626233
64613164363336613964346662363363306263623233623764396131646338313239663936613262
62613663386131316166613832613932323337363030323830373764643534646538313137383164
32336337303935323562373765326135376465653433646362393833323864636430303965646265
39343062663235633261333534613266356361373462366261386334383366626437666536376632
35613462386661366264383733373562343338326363316165663639313637346664313739303461
37386238643162643538343565343634663262376433396463616235373735303537616261616130
38613039653530363737663961643363366366626436343034346262323463663432663238303432
64333564623938623630343533346433373164333761616337663538636636666632313536326264
37353535663535313436613332613939303832653664366434633039633037336230626434643930
63643961646131383663383465663032343838393639353234393739316431376234383232356464
62343366373564356539376139633064353766326166613034613934656132616366396635353331
66373432623162643266616531373738616634356265363964643132613331306639633437373730
39666566346164383330623762633966313035646261636431356365303564663731616661613437
31326365333666316466623562326638323237353865343666303762626436663134363635613937
38386237393936383634623230303735383164333766616230623830346465643839353564656565
39373535303734393966343331353631383938663335376661386163623466303361626336343439
34613134646635333838636532316365653538633564303533306661306461333434663036643664
36666430383636373130643463663361653266383238343136376161383636613434373363363433
31623165383032663239663331626632346663623064366133656363326561363965396636393735
35316134623038323636613161376332343232656239333133373665373537343836376537363864
33376630323734346466353365333535396565346666383033633639316361393665653833353330
63633636323235613638313436613362363432663436303335623039613331316635313532363363
31363436663463373933316364653866656362303339636537613763353634386436653464663162
65663939613538633466653963356635626535646264326563356538376431623261623633646134
63646266313631373333623835333865633262613532663038663036383263383838396366663438
63623932623032636265626164366566306535613130616538626366306232626435383666383566
38353266313962666430653364373937313565623738333832313262643636616435386232373962
30626335323862333830633364376432336436636562303532336635663862623066333833353839
62613038373564626662373265323965386234346138303562633463666464383232643537366235
38623739316438356431306166306638336430643435636237323064383163393833633330633934
36363231306564623731303362316663396537353637643235336433663132623266633132343231
64656664653237383238306364303964643434306161623062623664646134323037353434353439
32646535313061346433633865393135303135316436626434653032383061656464623237643331
36306631623263666633323030336461313933646433633964326632653732333564326366303666
66353234343837336239333764633363626532366532666634383037396239336138653530303135
38396266323765323163643033346233356130656264386166653534623135326361663865303832
63356232376332346162346165376362663734623835613138636133323636396562373134303863
37663634333831336133383834663330616430383964666533663339383261646630633031616566
37636632316433626566363265643766653732376433613237346539623633356231316632393835
64383636306139363338343531326238616538636661353064636232356135653961353939613664
34313662353438313935353965623037656432386432333866326263626533613266646666343730
36373363623735396637633239363636623166323836313030613037633064623735363066376230
32633966653865666664356539353738383231653938626561323564613034383031376237616466
36656638393961396532333239663334393462373464393737326430386161363536616531386666
39393931326564663031623463646662623963643362336461353739633937396664313737323563
35666461393634343363626239346630633333303833623637636166653337356263353637353534
32666265383666633962353166393138326232666332653665343262313836333635636133366436
66313461353761653436663464656334326233353533313661656438373136303162303936396233
63666237383764396336613139363366356639376533626535353531353031336262396664383034
32303330623738326639626439373630343965383961323839353662353833386562613162323331
61323439383261343138306130346339343130373639333737383936303032646262303931303032
62636535393065636266393363653666303639323034356636353133663562373765623865363538
33376338653433366634313663653032663564656465653530353861666463376461343832613833
63303031353934343135663434616332336139616437366465393130636661313061636230643661
34396664353161626166303563376334613032623835373262663838366336323433623536626432
65316662356639363736303732633539623237616161643731353430343230303966633263613035
65363633363739383932396362626161386466353035623438353931663234636432666233333761
65393537646437373162323539353538326134343464376631363061363634376231396530646264
38333861653430393437343339623934636337356562343334646261333538373739343665343636
31356236616337313037666637623634663261383937333964336464643565343262376436383639
63373930326638663932376563353038346438383332356535366332383033366233396639363531
64313636353966656138663666373036323862653666353466616532323966633830333236663330
39393732626631626233646231323237333833393761356437393936653937386334316537373966
62343264623432613139316631303430656436303737663364623262333762363936613762666165
64323534316161313130313064623564383230306464343639396465333737373364353339653430
33666335626565656432373561663437376265313837393164366564376262643763326130626236
61316138373138346162333532376133626263353233653934323031353839303563663139653436
39316437646336363561346266303863313532326232333064363739373730626234666566353362
35313832633764613134626663666262623235303534383262646362366137386366656662656333
38353763383831393165323232303463333039366539383664306162313066653238353366336630
61376364653033653039653465353964366337333133323939633665663130393237643737373961
61356332633133356166303931383730653735363036393131396335613565356431363161633532
36383535303838306133616137636634663961383433326561333634393037363761616530323136
61643830656336653230643361363237613964313733396261346233666330306463633733346331
36623737613162323731636133646231613964343964383564653735343237643363626336663063
32653765333136366132616232376237643737653963326436653433323133626530333136303334
36373630626634353537376130333539303462663662313931626130646536313566336262633533
36396433616364653231363537633236646664643430636130313930326438373336636364326631
35633064333132396631643237346166353864333966313365346239303731383031336235626435
33373436663464356363633435363466623530343139393832326261393138383033373337333031
36353132653834323933353638346235353830646537613666386265376630316666343165323962
33616232633939346435653566356465663464656337633236626363333230626665636466636235
35636536323631333831626131636639663165303464616335633463393365626663316561383230
39653133383431373935333964376335626132326534666135303234313535386236653166646139
31336637393935303864313030616434623038383365653161646134323230636466313233356433
66626437666165393764323764376136323533383062346636653038353466623838656262313335
34333466383436386666343063623731653733376630373231313961353166343333346161393663
35613831383635616461373263646464313437643863626531393235393562626338333366366561
37663638353835313930343562393133353236613531393735663033633738663538

View file

@ -0,0 +1,31 @@
$ANSIBLE_VAULT;1.1;AES256
65656139313561656265356161313030656366323261366665343161353435326138393136636232
3635386636663333333230633732303235353764626632630a613134303235346632333236366130
34376664623261636438623732393361666664396631303935393430373836383434336238383330
3634613338663837630a393564386231386435393238613365343366373262333730303631373563
63633665643162623430656231356631623763643230323832353164353138323461326636303439
62616331343831313764323038323831316261323464643733623864626439646664623036303436
35626664326530376365626330366237303532623463626231633038626439386130346232306130
35376561626134383666643864353731376235616462316364353235306630333461613938303837
64616131373461653031616137666566643638653539653566623165313066393063326465306166
36396164393531366465383263616664393037383565383763323932656164303761653130313161
65346232363763333430333266316233666232373330643538663230653232396365653132396265
62336464633664646630656536613334633137386266316439313033626266326563316135663563
65346435653663626161373436396530316463636165373938656637373335326435393831653735
39613430613133666639343037646235663839616266336637636161363432666239613733666233
30626432613366383831653137313362356634633237303930323332623363646637653363316135
37653762356139316537303661656334306238616165633765613637663562643131653230643963
32316230643433393538373532366135626566373337623732653965626437313333636235643333
38616639616230643434663331353533616333616564666564333538383634343438306361623734
64626136393363613564643563396162653632313631663235383537326335363733623539336430
35643138323234393465306664626264333736333465663066656266623230386335626436313131
63306232303136373337653965346438356335666462313162646435613832316630643862653565
33656364353530383464343933626139353666656563303732333664663438356364333862306537
38323434633334376163313536646562393437616566323934366232316565613334353232343236
31313433666436326434643437313534313138653763346131303235653966346663623762333739
36326663636331613661366434313637653439303231393131643334643661343665326232326436
37386637623562303233323735343534643139373264303639343062666261643765396638623032
37356461346435313833323364303331366363653638323739363065303833386265373935323966
33653938613566316637633933633861333262666638376536643230393735323330356139353530
35313864356330386164353739393333663838353862396665326130366330616131356161313136
3836383432346566333064643732353264333538373939336666

View file

@ -0,0 +1,6 @@
---
dependencies:
- role: nginx
nginx_acme_sh_domains:
- polsevev.dev
- jellyfin.polsevev.dev

View file

@ -0,0 +1,12 @@
---
- name: Copy nginx config
ansible.builtin.copy:
src: "{{ item }}"
dest: /etc/nginx/sites-enabled/{{ item }}
owner: root
mode: "0644"
become: true
notify: Reload nginx
loop:
- polsevev.dev.conf
- jellyfin.conf

View file

@ -1,306 +1,306 @@
$ANSIBLE_VAULT;1.1;AES256
61363564353331636566336262656632663963313263626139376638326331613564393533396263
6233663365656236386635336330663237643638616432390a353439623732303330323334666639
34356631353765346565303663376562656238633331386339383930346464613234343332643532
3064336637303436640a313432396139313339323532306430333261633336393930633432626162
66616364386261666161626531386431646663393766336463313334633465383466313761613232
31343162616166353034633664626163646363323830323834373234313732353566316230643731
32333334363132626162613463646536363761646433643837303763623066366364376661633631
38303332363032656539636331343634623334363732353036343036356465333333663838666630
61613132663236313834386561373064343034353464643633613936383364666130323031366465
35613336613664613464396435326232366135613061313437626132346132633938363836626539
36393936663163306339666136396636353462616536386230313737623862383230353862656235
61383036633066623832623962646263623662626133343463396531376135313133316130643439
66636639663566393332656465353237346663613632316563326438616431666635376135636139
33363838643237386562363034373436333835646235366134326535636462343232636535373465
38663939633837373638653337343339663839386532643739643464656331636337663231663138
38646331346330353133343734333034646363346233363336363738356165386135306334346565
37616330653233303864663137343561643833373363633433613737363961396665623264303266
61626238343562633162323632353030663366383463646536613762303635353365373638343564
32623138373233663565326439663238393531396334646234613065623766633839346634626166
35656665646361623131646230643861383366313239643732656162656262313466393432383264
64663933376137623462303233383038613036313339333433333266346365613764396161383164
34393632393039343730656334613165396565396365616165656437346234373735643032613431
36663562643966353234343838393634343066373635343030643832666364393030353739393037
34643937626138346236343561346466333438626464666664613635386636616461343935636663
38616363633031356663303132343935616637306333343764373731333133336562323831613437
34313336656265303934356135316463363362303538656461386133353762656136636536313465
65633932323265643232336139343063613565313530613962366638383435666135633335366439
34373532666333653661386638383830303335623463643139333032346538333137323935323666
34363837663537366238613566623631353261343636653236376636363563653266363361663837
30666538333964383431643766616430343131383538623564303534333738363038383537356663
64636561663865373331653031316433373061303933386465373733386134316234376365666339
62666632356437366465346139323933666662383631613364363938316564343734363964656261
61333662353162353362373465303530303164623564373734363237656561326138623062666661
30623438623034393464653938393237613931653731386563333939616633633736386535363637
66656366653638393566396639333065356361326466373838343038353664396631393034646563
33306466663163393435386462373937623932306164333730643332663436626165623731303163
32623130383064383134306537663565636464653434323566373831623938313837626162366563
30373639633439376436643535363233636361383665386535323964353365303537623937313930
62383265633065306537386165643030366435323461656439323532316337313731323333383637
37333364363130376538336337356466346439303039336462646136373061363862336366373461
38643035366135386663633065333563343963633131393664376636353332653337633765376261
62316339326331323831303461666130353266396237626232323337326662623263376462333564
35363664386239306366316431656133663666623464333036363334366635333132353665373836
64356631616365363730303164393064363432643031633963613262313930343939616132663231
32356561623964643930366633303235323335303965396331326230333265666465363733666435
36353033623564376635656331343661306466323535303861386234376530623333616334386261
63316161653635636238333232656563323066656533653061363465626664653337356630613564
63643839656662656632303032333063373961363765656265663530393965313265393835303130
65333832613462613163636335616237393166323464336634363135663333666532663134326163
33393162653234643536333164616139346230343462353831623331303038333935653933373932
33643335356534643965313636303238306264613937656137616536646432623439323230343462
66323033613435323961356133643636313337663736663564376331303735373538653236313866
61363861663834643630643864623066643631373566666530633765373038373334653937393566
62313531323437313638666235316435616533323936356362393463613236316539316633613737
30333339643235303734346338653531316164626635363931383238666566643633313664306663
34643166623136336237616538366133343037336161663132393534373764313064626362666330
65333330623039323965663631316563303863353464376238333334656132363430653830333031
34633835643565343636343032653137663562616431613861383662616335363136643431663631
37613334333133613362623964656662333466616435666634646632636534623436383564353636
31343131313833393032633330313961616536353038653564366335316331643638663638616638
33396532666630363665623863363935653739393264656233333066623537346561313263313537
34393762333837306265666464353332663761623132346666386632646163306565343336313134
66666332373537363265346161373936303063646238393461646238616631333538616539356631
37333435363133353663353130316339383366316331653630613065393862373363303539316534
32656261353666373639376266326530356335386534333963373338363136366230306163343933
61616566643839303133323031336163306662646662383462653538613135643466663063376634
63653733343133616536393264396666396565326264646563303833616664356131353934393334
33306265323536356636326537623266383338613662656539646466306530373035653730336233
35313530353364383039656262326562333935363861333365363339386634646132343632626264
61373334323261336330623233323665376132373636316263636234326264343037653631613664
32656431646637643262356563613463626330386234323962666235326664313764656230366632
39656430666661613134663966333430646161366333326166303365396332313364633961323862
39663730346562666161626161313361316139333361393963313739396463306338336537663061
66383230343439343530633339393838343031663332323434653338343664656236333735366234
33386535656534383236636130373038636439313761646136636136303863306137633435386636
39306361636337656335633831306436306535343536396336343539396461346335666262393331
36356238646134363336303833343636346131353562376333626362323732663165336366326237
63623334636661366631363664313161356631653230303933336261373865336566326335653037
34343936643536623731393430363066636338313130623466376536316437356238623436373038
63363732653062356438376664343130356638306534343664393465346463333163613462366432
39373731626161653664333932653161643132623966323533336361393236383833633136663933
61343434376364396662396532383562666338326164336634663039303436613732616131356561
64333933313664646133626663386561336665633062316464613865313730303137623835323537
38383036656535306566333761396634613139396661326337303961353734363630383734633533
38353166323533653563633965623638336433306536333132633138333361653663366439636465
38346662663933623030326466353734383933383862303235366331386333353231636638323133
34346639383264623438393561616534616235323966353336663865346331616166663039306532
38646636313638663334303138393138653564373665646432336466366437363364316130633732
35393761623430383930313238633132326136303933333737383831313136653238306337323937
33666238373930333864373366343164353530366131663933623866663137623338303730636264
32393939636437343739396637626136303166326235653836643232646361313837353739386433
35316163663763303234663938356638626263363530366430353336393133393034386530613865
34376136633161336338666539316637646335333038313161383062656334656566643135313134
31363765316234373239313338633362393134336336663032616234306530623138623564313261
65626237306235666330346666636163346134643237346338373735636463626331663630643437
66636339363666633632303234316365373565623864646265356636386261343262633935663134
32303230303965376539393139376237653665393062646163353237656630653133366434663330
36623336323439363966316466316234636535346662383536653262376331653663303031323838
39623736333237303935636535396364303466656637333838663663613964376139336434333530
35633265373133346661343135646133643135376232333933326265633866653164336466353961
64313036303033323263623536366133303637333039663464343464386531373034616338636135
36666363396135626461343332656236313232656364613131653635653361336661396536303337
33633835383431633633363461363534303533346334306230383138653035656534343332666234
36623061356533353533363537343466383965643664343762386439336137343430313538323334
63396663343733396330333764313838393236316232343465303766333531363235656636626230
36326666623364306663323461643437613132336466643837336562636436386530626534636435
33653431373564646665633633346161386332396562663164383330643963613331613335353164
31306461663335343632376333336561663961303864643831653239663434366466306637633133
35353132316264373965616132626137386135646261616438303463306238356231316234323265
39363234613062366131623236663365303731623735333533356566643764343634306239643266
35373439643635653361356238333135303532323235643634383130323161646535336661306130
31363765626236356435663038396239303232393138316261306261646130356130663034646233
39383731656564663634316431383638353732323133393363633861333665393965393336373461
65636563616466653734346565666335343939313336653035386431643032626133353462366164
65306531323136396530353064343462323265333931346134323234366134626263373363323738
36643532643834653837623265333365336534666434333738386266326362346433356266333133
30353333656231386531626633373261313534363235383565343334373136656632356235613333
30333934323463353739356237343264393239623833353639353938646339626231323364643735
61633931343335653632386537303765303365343531633564373230643433326434643130373036
64613162323935643436386564623831343435353239626638616233393963363937306135643834
61303737373031376139666631393132343835613263376466663530646239303038643133633433
66343465343565656463306262313037633832353064306361353165666433623561353266653031
65663931393132316466656130333062656163376263323133313538623238313965303866613439
63343235306361333533366531613935663361313164623930383834326564373733633966396534
65343461616637316638653738396239613735363936616563356539393166393861373437326565
39383363363966313065333632613261633362393531633566363362386365656136666266353437
65613638616638363038613831313237333833643233303664353235393066303731643366366434
31376164613232616164613065386337666238303935313138666333366439383265326461396439
39343161333630313230373536386664346134313330633537663461663032316636663135393564
34326661393637313631323036356232663336663634346266356138626232613361343235643032
34346438663536393537623361333062643837323062626265323235383461393761613439313664
64336166666138353763643331313438656361323833356236393038333333346265366361316563
63376463343737643832353166616566626530383837643035646238643463653137646633336237
39326233613161643162313933376130366264663931323433613331373730353065306138643537
34633734633262656531353936323031326163333566363464353166323530303536666236383932
32333461363337356461333362303963386134373864366239346630326339663034303738656363
61623638643664656237646131653961626136333533373462613336376364373230613961643666
37323231626136393039623232363761663939353265636439363065333135393330303461663265
37343532366433656164663737653931326538643139656232363231303965303964656261623338
38323838343732326634653231393137333939323731613534363433383331396435633937623366
64326166313832383533386665303964663065316138396639396438353638666637633636313338
31626232323933633763623630333661653735346336316638386432383164373134653863626337
35326138613038313138396565383765616463383033633564643830646632313839316436616136
33353537316666663866353238656134373466643030343936366637373435353332343735353236
33643834306134313036643534303831336238376164333636613365616539316538346535386337
35386266396161303535626538643533336535363338306434363534393263626464623963353061
65613030646437393738306436343830313361353466323062323364643430373939333066623332
62356334386466626438383835353764393863343431666362313339323161393364636264326130
38366534383463643130653932353863346462306437666564393036343835383430653931303237
31323336363430643638616637393531396638646663323662343134333466666663346530613664
63383532666532323232396565376339303237326464306330653932613962313136656635383762
63306636363462323931636233333639396438383535376262376230383038623430356632343563
32613135636436613331323036643832653362623235343864363466303263373230373032306337
39336630333130316439393239336363333763643565366165636233383265613638643364663262
32363337326261376231653066396533666435333232643136343839356662333331386639383765
66356537353538373465303738633830623162653335666664653230323830363837653466363135
33613239363535653931653864646436333635393939383333386366386265363435303763616536
36333265376664373132366366343439613239666530653631343836666634363163376264663031
38373566613832613865316637636538633265316330303239363335653665386466643735613839
66653863316236383964656235306437646130386434643361656130653132396637663035353631
61363964353732663765383433313634633430656437346230343561396339346461313961613632
30386338383230313564386331356263353464343137336663336438333562396635373935393230
33303031613837663539643132663735323662653231303137383361646330383333633962643330
34336236613131306261616338636331623732666366353961646337396434313932326464613136
39626162376465626634343333353566303261663638653766363362336136623861366338386132
39366265333730326439633330396337623635633830346361646364396332313932333433373333
62613837336462313065633930386532643865383133636433303362376231313030613264376139
30613064663637333636656437303439303263643236376136666266303330353634616630363533
64366631353065653561313935343530383164643235383838346338323236373930333331326434
32386430636236393363613962343065663361313661346162376162626530383763346530636535
62353634636562646431646236303564363334626264383566316162363166373264346533316364
39333666373966366365336366343862316662626638393463373833303962353130623933323833
35313965363138653730663635636264633536646535623366636232313666393732303131353233
63313030396236376665646435653362383936346562336464666265656164663866363436323034
39333230383233633133633233326166356666323464633036333135613639303666316534623963
30623835626266386433343139323532653266393733663566383335356162613436386538636534
38383765613338333862363233666666343165373365626633623230376339313035643732363562
35396131336261613332316632343066623135613738623565323131623562313835366139623665
35616635313131643639663237323165316433306230393035386166373533376633376335343536
33326533393035393737666465636134386536336133326134313634306562336538326362616663
38383238386538623938353435386165386339636135313165653738366432323534396236353031
33373966383864643863393133303263386164626438633236643365326530333632363831643430
38303230323933323965663166643263316166323531303331323464383534323438373163366566
64373531633031326232646462646632383562656662383265373835323134376161323066663633
38616362393866623962616330393130373634313630373537303938633937373030666633393936
31363432313362393530343763623866346164666236353135343663353338623236343764316366
31363438626665633864363238626463613662383331663963666265303930306662666361623331
31653562633738393537306436373435373232363039366561613031366665383135373862643433
38383434383038303636303164346130653261343961336435393337303233373263396136636532
64626430396435393034383465323130663739323763393934376136633966656238366431363031
30633035303462663734363462343062393531336665373833643337303163636561333063333037
37323236616261613463306466363236386666353738386335383038373932643330353937636261
66616634343531383433653737376434613464383639323962633831303063316430636366383936
64363463323161653164386432353762333130383262353261343230613465366138343139316565
63663361373462643631336562333736393432376332633761613333646539613761653038323037
33356431313339326164333338333466633139363066393530313332376233313631373861393435
65313436363537663637383736313030353264363233623135393039373338663966313065306532
36653435353437336266313138396334313936616630323936353632666464653238633563626439
61663461396262626666653434333564666335616332363535366663333634663762303034646631
38313663376465656530383966333138633634363632333561303862363533363636366437646438
66306261303339343462363362323465326639616565393136653431613330353437623764336562
39333837396565643637353465653965663139353237633633376534353161353337656237336465
33663038363631306532613739396664306137313534346237326365353130653134326337636330
33353031313262323962643633663261613431336262356631616236386362656333636537336333
37363331366265306161623631663932666136353035393437623464303865373836623136643931
61636636313137336638346462363966656361663033376532333932323737376263343930666630
31333733303862656234346130373264333964623366376262666635656437656236353937323166
39353863323433393866386232616166336636353238316330373030303232353731613933653636
30636533343862336364656239623939613135383035653665646538653062383633303333613732
36383837396561306330656466663630643037653930303930326561333038663666653435633565
65656662643831653966306161323933633635396537386337373739396163303536376436643634
31393431346536666233303533343136623661363531333835373934356365343237336532333830
31393335663630366464306132383665653964376563623239343762326361353930363636663338
38396435356533366332393437366136633262613662316132313066306664636166346366336465
38633838663261343237346162633533316431313566393762343663363735623965656339366566
62323738623461326434393536383861323535656265646634316138313061633465666238373331
31323335303764333266623962643839666364636132616135626437613138343236653263346166
33663035343035323433393462623938623931623164393739373739393863323230383832353239
65323436353634313665396334356435623231373561653266613362303961646639343562336266
30613664303466373936313532356333373935353331646130336235306565663265386638373232
35663839626465646331623966306238373036343263313266613736613639366661636532343562
39353831653735316134363666656562646262333731666433313238353236343338333064616631
62656136343130393234383165666533643162636635306438663966353239376263623632373933
33666539353862336263386436303064393166323035633065373862646337663933366333393830
31393064356332393635343132343163396663333639353938663335303732326637326630393164
66663662393434376265383034656563653338346661346337653030646434653661613166346631
35356362643262646566623166633466333961303263366130643562646237633062333931346431
38376564666432636334366538336661323439386164356265376238346261633736393533353361
61353333316232303632616563636636663431373664623461643037323138326630363436633363
61363562633835373764343262393562373861386630376239616434346435653365303865396362
65643066396363626134623538306330616435616532376232656237653364353037386461316430
65363461663365393261373430316134653261396231356165383931646134383862316431643339
30383636633865333632646464313233643865626430653638303530666239653265343866616437
31323435386333616261373937633534336134656664343465313961623763363566343936613536
33373765386463383966383839626635306439626531623730626664656331386136376136373736
35613936313031656530643438663736336136393933343034623238623330616338323938356433
62643134343933386239353035623764666233333230363466373163326537656363373639613066
35636663373165663738333364366561393938343366636262313437636166303435396265326161
66633136393137663033666232366132633566306434366362343531323163323533336537356562
35346433383861623365396563373237316361323564626134346135613831613636616330316164
66336461613230643532616331386364393062656662633431366661373439613164366135396636
34633031333439356661356430663032326435303962333562356530333230343432643566623833
32383737653963323264336465656633616532646264663161373462326165623339356363363036
33346331373232653462636638613463633365313664336430313731313063373363386231663035
36316462376532353136303932336665323437356630656439653563396534663436633831643635
38656633633863623337613861646530393734313935343732623465643562633362346465346432
62323838643533623131393235613532383562363530656163353063356431353331616633646664
35363864343731393735636631623365366362393638626463663239653763303762333765623835
32373338643430393765396434313939636536613535343064643634633436376163653231663365
34343334393161636136616638613766383431326665663262316530316236313533656433393161
66666331633463663933383931393865313363396238646231303936633662303737653437353065
31646163386633376431346666663066316265633031646566336564646565393939313738373331
37613366653632373934383639383933333566656336393765633436623531333031613833323332
63306562376261653663396162613965343636343365353062666632316230336437646265323930
39306430633233336336386633303739393734316331653439336538653862323831656365333935
37343437323336656338313164383566633230656333393663353064383737383835363630636364
63303534376139383962646337303237353638373130376635343966656430633165333539636131
32343263373331633831343165326361663561373363663463316233396162653039633962306530
62346633386334386238633161393337333330643432663666373964633936386239313464396566
36646333383833303562323231336364383666626438396461323533396137376339353133383361
35306561393738316563346163393035616363396131323030316238393435353862666466366133
63636565356632653165656232636166386464393139663263663430633130313538336533396431
39316662313337333032633263383533323766323361646261366233366335626631663939363161
35613135313762623134303534653532323633613363666333303031653964323963336165663831
35393266656437373634346661666132396162623136383463613630323633666564383639613332
35376534333365636664306532643234333966393666636262383065653431613834303134623165
33353164343762383335333861363033343731363064646165396334626330623930333564633238
39663338353666353661666538333265383638643861333833326234616264656339623131383231
39373630333235316230633833613038313931363839653930333262333561366361626435643464
37613439316363633264623830393439393766613164343930356537613564666530323034663332
32363433356361396264386565633962613162313062653066366131346638353134633435326165
39623361306232326437336665646462343066393062373137303339343965663164656362663466
63366237633637373730383538616164313162373965313665656133303630353233363938643338
37613962373834333535333438316233633432343832386664613137646132353635666531343465
38376433666662613161383534666437643963383062333534306565313337653138306434316234
61353663363437376261363361633062386263376166303531643432383339346339363638636565
62626539613831653439383738326565356639626362333566646334643164346635666235356631
30336166383461303234303633373064333138306461373633613137383066623463373564313462
38313961306134326634643064616365323463393332643836306465393839373866373536373434
61396630626264323564386230393631303330636339383166373764343038323034326666663261
64343432363061636263366539306334303135666162306338363331663633656236333739363561
30323435356636643735633266616361303762346133656436383035323436633633613436383962
37643538333637323738333238613832666334643937626366333135663764653437666161313430
37636631613662323036356638336238373939643039653063343639626266626164303335653035
66356530353130393366313939333139376135613332373462366461346364623937643035623831
64353732623036646261343866396531353236666139303739653731663835653935633934363263
36633636393764663531396435663836336436656665386339626337616663646461663466383239
62646166626634306439323136663438666634383732336663636634336239373164313730666439
38346431633863363064373635653939336565646630373864623862616537633235333064366535
65623031326635353835383534313635326561656533303964613830643830353031383166633363
63363734353838373164336466316165656566656130663264373430623534316562623261636437
64643039346563653032616134353336326562616261353631306431643965646634356663633331
33626634313330393938393238383036303630356330633366616134663961396130326261353862
35356439303236386337393766383436383935363436303761663036636530363130393432656266
64326232353662363062383232373031616665643237366139656538333536653364373138636466
39656637383634363030353966326164333235666161346563323431316634353133626463636166
64386136646632653038373162383062316334623936646138646262663733313230313931336266
39343866663163323961643634303535653835393062383962326561373661393134393362653437
35343666326339626530343964643639346439323733316465353136333536653862353730336134
61363362613261663336373732316162653465373436333032383235383030623635313835383133
31356132323731336630313761373133663035353935323832323736663961396661613535373331
30653165623766366632663739333461393337383930656438656566306130323438326161323231
34666464333033663765376566333563323562643738363366313332646331333362656638393061
61336530356136383236346532366135663732336534653233333364363931383062363430353732
32633338353936613961393961623535343433363562386163633937613266306233
37613430303966373261666132643933623163613231666361396134326564313062623465633632
6133333938623562633861613038663664646166353064310a306432633930363731633638353237
30333964653735323235346330666338613532306166393561643633396632336334366662343637
6566353936326630610a623132623262366338353264346338323062386437663734613232633834
36623634313932366335383537333536353931663639626566616239303964643963353934383137
39303266353537346331353933366266363962626531663066623164376536393863316134313166
63376634313835346161353239313461656662343665373930666130353365653130646264626365
66393764316331626336386361653131353038643034336661663732616661633132386231663734
63313166393466393839346138643966663966646538653331313863363434663837363965333436
34383935646233306431643065333231303931343665373332666162363937616537366630326333
30656530636135633436303737333866353362333133306363376534633765323861623630356465
32653937613464326466343462343837666633356465393861666136383964396236333464613637
32633332326663333437306637666233373831666630623236323764353031666637626162333933
39343637653730336366343432623331316339623232643332653031346535346232633164373564
38626632643862616235356331626538326339323939336131613837323863663830323231386236
65386265313834666638306134306534653362626235393064323064313536313738613335643736
34666562353337653761393661356230663938643361623636343764643062633136393931656530
31643135363432303034323031313063333934316161363362336561323438616439333130646636
62613631636561306566396132386634613137626432656138386639646334336232316132656131
32353131333761313662363763366564316533666432643866356339343866646166616239323537
34613365396330656332323539323835663236383033323434313634656261346661663230613132
35396366623466306633343266656232363232616634356462313635333538653331356232303738
66326330356632336564366330376535313237333539653461393030666637363834636136353265
38393566393839316133613862646662303933373166326332376538623531353537363739376436
32666133363866343463323262386530303739353635383766643031333262386665623463643234
31626361636463623332323761346166613431313861303538373666663833323935613866333664
39353539336634326537363661633839626339356639663738643936653831653734333539613161
61396337356563323961386361643065323661633963366238383665653634656262623666326637
64663035613866623036343535346532653631323432623164343936333264323332313430316535
33646366373931643936373865383562353830353866326665646365326431346435393265343630
37383934353964663035623530646339636130366233353033363662653034643033373761383931
61373164306636623361393866666439626334663065613730623834386562376136653737356435
63323037356664333836323864386562323138623735326538376337613438353664636138653336
61353764343939376537356636316639666439613762356562333165336231666539623433393231
32616330373535366336373735636235356534353262333561646261616238323465383664303036
38363932336633623763666134386565376238373137363239326265316434333766303739356465
66633939393035646661643130383935663838656462626337653665303339643465663530323461
63336436653365643430653834656239643833313531323031656564393031343331626438363431
32643162626536626563313365373130663334616333316365656435333636333736323464383465
63323637343462323737623063363263663463323064653862376336346633323735656464303562
30393234303230613436376162323664333030323162396333626533623865653938626539346366
33626233393736323130663161366363616635633432666630313736333832396466393662396132
32646337346237633936636332393636613539326266333534656263373234343434336561666139
33643261303166313436623931623236346437643935386239663564626661396434653130326232
62376535656133383261326634656532393933346136626162333530326439393530343731616533
62313031636132643032616630626537633162316231316661366134613439636336313161633361
65343730356634393738336439656564343730626237333633643635343331373233633936663031
39336533636135316166633264613030643636626136373132306233623432363133656638636162
33386262396339383063346166383636396663663530383234616230623261393837376335646631
37313934373631623938393535356130383531346431336335333563343338306537383630663962
62363234653539346361666438306663633630633366366662636330323162646633656461616335
39373362363433326334343033623333656663356631383561336330636266393161656336386135
62363335663563313264653535633461626639363966663433666566623438303536383463313737
32636530616261326636363039393631616138376132303265643334346462376239363966393538
33303961333161646633636137646661323133626137363032306131313335306134353765326135
61663934313233613164643265633964333738393362373832303534633330663131396237623835
65356234333539326230386266356239616364653833646135356237333231613562666363313964
35616561393462373730336636376662386339633732613833616532666166383232303636613534
37393932343939613261633666353863343163363665666133313863386530323730636636633732
63306264353464313334623436343761333034656339656237326131633362316537363434623664
39623065663763393964303462613466373738383538636534376133306133343134376333643430
66623438333363613064373131323861383935323931366666343462366330316561343365643137
30383734336433313737663638323935643931326239323939383138363164313237333965613063
61383936646464336438346365303136386462363566323965303262386238376466396130666637
32376462663834316166333837633564383237616564636161363466613639633739343963643134
65666566323136346639383631643334333561383239353062343533396636363061643933326231
65303835316164663733396433333530613036646334643233623831386237316435626364306433
63303465313262353866346431636566633438383764313239336561316362346135396565376339
63333337386164316139643163646365363631613664646434666562383336346262323464623461
30343661333266343362303066353237383031323364666334356561666435383938393433333934
38313066343666633039393338326133386336666533313862633163343731306337316337373666
31353663333335613838316263393433663062373364326534623966363631646430356263383764
39613661386236636131626634363065393466303035616562313931626335613231653930366561
31376639303039613634646261616333643332373161303330353937386334343534326636346333
30643066613336613266323431313564303438326466303831633463353033316362653462373065
39353139323630623765626335616638316665343638303439353934616231396535326338663965
63616235353464363431653665393961633338393232336535306265393436656561306462363130
34613366356666616336616439653631386130303161373439336461313264613331623535316364
63626533346633626362326537623936636362663439386632323666623736636135666337616136
65303163393762366363636262366433383134373537656661373864646532616639323233323561
39373630353733346134373862393334636339346634373365356639383435663966363463303337
37653834363663343361663939353638613964626263656234396366333265353365363638323339
66363231626533656537643139343231616430336135313730363261663239316430336339386262
31663432373166383835666332333962313261386433336163356535663762336136373937626239
39303136643562366433376535363533343938373133343737333231353364366162333132356464
30636139313831663339333861386165346532666262386461633738323030313237353266623835
37336362343633653035326365306165303335613036356236393136386363393139653065636631
62663762383634326535373831366430333363353966383039303631356164363661333230373963
31643663316165623363353963623163346535363932376631633464313232646661646366396264
33383163666537306432643062623631323133316261613362303732303036333331636431653563
34353363626533343662656264303961333865303466656631383335373964303266376134383066
61383336393135303635306362646165643437316530636339636632653336303436376431323534
35373835333637346533336134313333653139623935626361636537353635303262633139313335
31613235396434303366643733346631343830653531646332663331363130346639643966343138
65653730623565373733336439643935666262633064373836646561373464313430613335396433
62316438366463633339366437623561636337333235636431363466303264633166616566643536
61623864303865363434356536656665326635633066333037623461663165393965323165383463
38616466366135656562616161613933653534663162346633643737396437386239613438376233
31663834313430373937663237643337353435633166383030613639366238313862623336313565
32623233633664633839366461626637623064616330666265386334333738336434646166343830
66666261363137373632336432313366636162383430613832306538316162363635386463626339
66626533633232663236373135323737333566313961393932396134663638666335613835316134
36643461353861623261386536336661633730666566353034323634353239356133636535333266
61306335643064313838666462636133636538616432303162326236613337396136326431643839
32303333303663353662386537626432356230613464306261623766656237376239363436313135
66663562386266373539646636316537616463643935633432616664346535636235313165363533
31383663366233356134623932306662303331353162363538303138326535346632326561666364
62313230323439393338336238373162333262613430393431653436303165633661663162636461
65306233363630663163366433323362613062386461323961353735313566363366376135393232
66376435343965653036343766346562393830346533303437343666613934333032343732383764
35396639653836313131643965396238346561313637323433383238396638353461626261343663
33373632323865306261313866383763313931346166653463643062663864393234393262373062
32323834343232613764353063343335626462373965663630663239383330326436326633623566
66666333616265356531386262306334616632646132386665353835393263303232343564306533
32303366396538653361636133353564343730326332393863333065353835663066353038383662
32396562376635623365626239626430396564626265343938636534623532613435343730656566
32353531353336333031336133383534643939653461353130306437303238636565363339646365
34383732316630633965393734396638626166303064653437653332346461633464393037363832
35623963336636643164336262636266396235326365346161613135623033363332663639623361
31306538633638386233366638623764633466653837356439646231376139656564306635373263
32383239663238386539613632346263346139643436656436653538636466643564653637393064
34323539356263353064396135363932663664633232366666613665336339353966616666646264
34653632313030633263616561306464396330343635643835303732376364656163613532633432
64303961333362376535643230643834336166613733343139323530333735313264656539613837
35643331616136646339643936656138366538326539663861383133316264376337613765353361
37646461653639383630313830353034353137636238343262313764336431653533623964666435
35346136643264643437376235363464313836373933366536633061366638356363323734343934
30363066363861633562333261656334663833396561653033653430343839363735323465366661
66313161343266353963373265356131366437366662363630303434653437323732373830636262
62303432393639393730646339343638343438303930306437343062376138313037643131363866
35333030386263646333656538376536303530323131626539373534626332646139303836313431
34356437393833643762393137396533396163653434343461376361376563613961366666666238
65306465336162633361626164383131323135356463313039623036396166656131326439353335
36346165623664633864343662393231383364363639306435376462363863613165306232336461
64313362393365393634386239316631356337646563623361613038346535306234646166663331
61363761623334363332363237353437623565393235633436613333373965363931666361386135
38643361393933666132323733653666333634643336663431376566366633396466343335613265
33643137393363653137316432373334326233343436303263333431336137343062623161633333
66376334646365343561643034303665346537393963393135666434396437623734373434303331
33613861366336373634323933383763343930373735653132343633323738396237373339376537
64616232346164303932303231376163626565666539643061353363663265646230306136336238
62646562323034376339643866353363366364326462336366646332373664373335356165373936
33613066653361303134313239343036343932663930346663323362376431353138633961353364
33633135313663396265363736396364623466303030623565646535656536326231653264363765
34613062656135633164643630326534356561303434643239306562653033323032333630326433
35613334383965643632316536376463646464633937626131393462316361633566316230613162
64363330623965313363336534353739646338343637366264346166636163373930363365633439
36336366373466366562383866366262396536306465333534653562366663623136356133616139
61613861373639613835623831626331353237336536333561396232646264316337643062653137
38313562656564623336303931336364393538353562643537373935346131306136313162356539
33613762643466333639373533383065323538326630626566646132613763626463663536666635
38323661636538623762386632303134373237383239616266373130316235376331656462366539
35656436613230373435376266633163323830643031643535333433616438636631323564316635
39636433336666376166346362343239373236396161633434303065353637323364343766383733
66376530656630323837393332623037613265396335663331633638636635633032666363316136
65623130613763633764613433326333386265353365623431386364303236326461363933633363
30626362326538643039326630303861376639666139393238356339393930633064303763636161
39633566373737316361306634333361353435356230663964393935306635386532643734383462
65616134633335353738626630393964353065326538653435653963343039326238303738313666
61373963353361366336653237336431653132333433336330623738663364393336383835643064
62363465323836326333613832383335353436396263343739373364356132626138653832393166
66646535613233656632393562383938646665613762373731333639323837336438613063643334
32386264383236333664386466636234663238333761633963653061356266666464376136616337
63616239376533393634353739386262636466376235303263343864366633643366376233386166
33356534393865643065633738656264303961333464373062623133666436656532363138396332
61333932656661313963663062353836383433373839643135356631333261333466636663386266
39356438656362303563633130336266323361636564313731373238303034303961306465616132
38363963323839656262346135376534333530623862646430303434653465613762353139383333
39646433393162663633663562636330386634636332366532306363313264653038656338353263
30393161313136323661303063643436396533366436346365653736366433353536633331343734
66616138653834396430333635373834366133393961646630393231643730643061396262303061
30663665663832336565636333663231343238396130346635393431653430383262326463383463
38306366613061336566313031613266663733613938366232336265353336636463306331643331
66383362396664363633363936306531616333616131613363313132306663343936313662366537
64326139643230363965353336313138656164653365356436323566396634643266346430346230
31653237613537313531383831363862396331303636323737366338616337306538616163373261
64303830343739376464623766646633626239303932383232623463656537613965356438616338
37373636636561646236613966613461326235383631333862343732353334353162306234386631
31383937626132363438316463353535336633613632653965343937396161336362393139636538
37326431313863323035626532313466343334333836363435306132323636396265393661626233
34646465336366333138343830663535303937336162303736663566336265303637626165633834
61373762633130643363646336303930616230393835623533386661653238363533636565633739
62643431313966346162303966386438373132303733303561303531363466366666326465633632
63323163303066363537313739643062303334303830323665643534343063383463373532383862
31653431643935653662643936616561383863353962333664333539303136366632323632646136
66613465623831646533663261643566646337373661336630623435353635363438653132633564
36623136343732366436366630313133326661313130393138663334393265363933373731353730
39646563373632363835623965396666616263613239343637363632316564303661626265643830
38353061306664333331646333303165616432336666656437636661666562313662623831313162
61313835656563346132653465363463306232663334666333323139383838313562396336303066
33363137623061333864656264326237396638343331316162363231396636646266373635356436
32376566626365343136336665643362653833383334326562313030643333613566323933383334
39316365383132313831323037626437383434653234326266363237353937353431333230646239
35303230366464386137653463393937353262356565303735346630333333346265313566623963
30616338323032313063343834376232323466333564646331613465323332333039653266373830
65383330633863373432356437363563306163653732323662633838633663363564323431346164
34353131353331643338316366343435336434616136613238666666346139323839383936346337
30373062313033333431333931663161646537373762336461633131643632623432643761616438
32373038643662343961643066636263386233633239376639336339333039633035623036323462
62346137613234636336316661323465653063333831626534613838653032666666383365616364
61663037353431643030303636323330366430323366336235373861616330656333313366303563
65383431393033663063663963303437313563333639313963366561303465326339616131303034
61613835343362623861343335663637386437336536376466306130613836626530643263656233
30333437303162333138613364333264613564653235646138313436323831666263326239356131
38333961396336643566643262636464363266363566633433333361323533643064633834316333
63336135633063373531613534303662653734653137663835663562346532346233306666653432
62366666663335346363316638346335373633306237636135353931636662623863663634373532
37356163663264313766663336386661613637616263303634356538373634373238626465666261
32353165373937323561383563303933636666636131633730353337363265323862613235333832
62366531666266373139323764323638393162643530306135616531393438383963336133613565
36326162306235623630346366666562646332643233396561343938663236366530616663616364
38666637643732303764626336646263313131353734333435346465393331666264363538376666
34663464633038366565353861313734656532383065356431346334303139643537323037383539
61623136306339366537646436343233306663383031353565653066376134306266376532623561
36663464343133376264386539376165643464386230336330623134306330333636646138343566
30313239393463336436343438336564613538663734326564333930313962616631613437613163
38333866343731353337346534326630353630336330366637343138393439643938633665656139
31663733353937643937323062306332363535356363643333663731663237656464326261363264
64373239643031366238636264613539633263633433646162386366363865616634343337306233
65386463633731616533393461313437373937356164306535386332326338653734663038326138
37303238653433613166303862643630346164373436323065393135393365316466623965353739
33663034323832303830316537396461383061623662346431613365666638373235616234656134
62633236336231376131343237313837313632373965663332346239346163323237303462366237
36643132303236336238396234656337613732303636326266346230663266346431323235613831
30383930303266623566333963666339363535616132353263653862383162656533616131663033
33663230616439386439383162373364653734393934396262356232346136643237376231656262
65636564626132303461613931616138363533653333646463653635333935356531633236613263
30386431313665626439353133303733343330386137396461316232616161613162353932336434
30313265383863396630356631666230656561636239633038346465326337316430323038303830
65653130343265636361373432613864383332623965356566386232653266616335313930323436
63626234663036326363656465653237636162326366333266396631346534653935643534383835
34633835613565343662316533386561363466643932313030356430356637376665613930356561
66323938306532666537646232313163633937376533623634303962656166343961626436353563
63336238623533663666313264633832386337643865636662373066613935323066623031653535
62306131623865323731383138393639383530323631663864353262613235373361326230366562
37633930313934333339666266336230616135333463326661353863633638363937316532653666
66346438303238646663653061653764376534623861633838396261393032646162356266303931
64613037313533343763373633356534373939333534643863613734626335653930383431393561
66356634343130366136313533663533356466363366333865623637303134343035633738336138
32366561376635306230393033666666653461306536353538616363383861326562323532653939
63363532316464396135353038373162313232353432393037303730633735346435656534613839
38666137373966613130373864393036386264366464653233623161363564313134363931376563
38636265376565646162366234383737393163353137616130613263396433626533313665383738
66326266353339316637393764353530316562656661306135633462636136613736356434353663
33663861613537323930356438613464613931383366363738373663386635386564303161313463
32613065316537643032316439343165623632393039643163666233363439333232616162653735
37313163663134663462303233373462326432633333386532646464636366656366386663393763
61326262363362303564646334323939333137343438383839623432613933333234613033363832
32313930343731653633353137393263396161343836323531626531633161396639636165373439
64623035633066353266383736356233313538323661356631663031333264343064393439626135
65383464613133646462326232326532316662323037626237363939636661343738363863643261
63616636376633626164336239366530653733656534616664623137613364663564653863666362
35313563663333373666643437393763363431313266636537313236306431383739303564623435
39303331353061386461343636336262353864643266656235373235336534626336613637323863
34613036653639353861613965613536626334376566346564323964623631383333633066653634
33363831313066353465303035333636656366376664356266333763626330316465316166316264
32633037653830303661656232363335303736363865356631323365333936373264373934386663
62323732666631353062313037393130393565383137306135396366636439646637303034666261
63376339643464303961653166653031336239326437363637363133396133336639653033363563
39316438666161393261656237653366383962373736663763303733653235376233616161646535
33383930313630396337363432366239303565353965303930656565383964643162333831653034
37356566316334376436303661333932306436656464633835363262346562356637623161373936
39393837366164343363646462326132623733306666663638643639323632393438396564353064
61623634383066663537373266306166303138333165666664616531663962633164633664626461
31323666336536626635663933373566376630643830376137623033666335386534323431633233
34353136383161376534363234646132363133383064613463313034363065326537653739613635
34303061633263663433313438633533356335336131613832376539346465393866636234636661
38663331373162626534336362386465336262313430373030343466313839656566373939333630
30313362333264313232333161383566613361636362373065313664326635373233636365323564
35663466356534356237313165393537353132383236666261303038393961323339393332396431
30356334323131306164643335626466636564353830376131613764363763616163643030613334
35313261616530383766656433306666313139353935336134613833303136646132646230613861
62636664633031353832623537653361323231326165366163623561646330323530663436303937
33396237633534366530333633346439313733333964396530656139663431653934613962356662
62663661616330653637343734303035303238336331656465393565386565383235323637366530
38316363656332353266643339336237623031313135316335656533323130383762663936373635
66616633373861613366633234626364633963323836393233333630633063353435663666643938
33663038643865333535376662303235623563366263313531346336393330636364633437333539
34316437336166343333623438333463323662633765313562316639633535666432633730626364
65653562353430623535353032326666636565376533386663613538663536393864383966386561
34366266623265343335666237306662326235653266303861633665626266313236626632643035
63633963633934633564333736373238633936343036623334333435643739376430643365363036
66616665613936373638373738303936356161383835366338363561363935353365383734643763
33333435313434633464386538613939366531636233653264636261623033326436386138633139
33353835353936303066383161303161303432363035316264633339363637623936643830636362
35626432633262306263316666383533313630326261363466386331653936666236373661646235
65303835353535396638616331356633343438616331656462336663643533316634393365396662
38383332343664623466316235656136653962336336646434303036646437653161343739663438
32396365333366633934383038623831333435356464643962383164313437633737373435643666
63616462636532623039376534623239396430306230323030646339616364386431303361393064
32326237303464623731313661323763363134336262666332326132633732663332623935316266
33343663356462336236363339313232303032323232353061363264306263636231343365616335
37346466346632666430323739346131646163323664386663333131363932366534636666396366
63333539306131366337343230386137326266653537643762613330323631653139343265363838
65653831356237313132636530336664363338353330326234613063636466306535393963623836
34353234316239333534323933663733316161386265346130646435626463326539653631643639
33633263643665663330326338306464343331316137393264636238376461663135313538646266
65343561383365626437306636643463646433326434383966376436373936343766323238653066
38303866343738356638663932356236663463306536623635363839663763653265336461356630
38373538383964646463346637643933663663346462623230636264666336663039613037613732
63353532663535353237383431613736653066313161316363366135626362613633626133313637
65376364386339363437636537383432346231653062633332636232396435366166636262356163
61343965623863383933393639616631656633306365626536643038623036613566656362333361
33333531353262313538623031623832306433383435323763316637646433613865653961333763
32646435323738336336653265333136323961353433643031636336303763663234

File diff suppressed because it is too large Load diff

View file

@ -9,20 +9,29 @@
become: true
notify: Restart postgres
- name: Create test db
- name: Create databases
community.postgresql.postgresql_db:
name: test
comment: This is a test db
name: "{{ item.database }}"
become: true
become_user: postgres
loop: "{{ postgres_users }}"
- name: Create postgres user
community.postgresql.postgresql_user:
db: test
name: polsevev
password: "{{ postgres_user_polsevev_pass }}"
db: "{{ item.database }}"
name: "{{ item.user }}"
password: "{{ item.password }}"
become: true
become_user: postgres
loop: "{{ postgres_users }}"
- name: Set database owners
community.postgresql.postgresql_db:
name: "{{ item.database }}"
owner: "{{ item.user }}"
become: true
become_user: postgres
loop: "{{ postgres_users }}"
- name: Copy authorization config
ansible.builtin.copy:

View file

@ -1,7 +1,8 @@
$ANSIBLE_VAULT;1.1;AES256
30353231656462316431613932303434626565376362653831386138663233343635313139303633
6365613562643961663365336539323361316464313135610a363465646435313634393365613631
37626332366430343861656232386661633136663334393862313866323232636238363063373534
3932326664303535300a376235663132653564626161313130663732333561643463336538306530
31363463316136626361363332323566626435353363313530376231353862336530323265353738
6536346437653464373331653530386233663866386538373339
---
postgres_users:
- user: polsevev
password: "Postekjeks8!"
database: test
- user: umami
password: umami
database: umami

View file

@ -48,7 +48,7 @@
register: result
- name: Tailscale up
ansible.builtin.shell: "tailscale up --login-server={{ headscale_domain }} --auth-key={{ result.stdout.split('\n')[-1] }}"
ansible.builtin.shell: "tailscale up --login-server={{ headscale_domain }} --auth-key={{ result.stdout.split('\n')[-1] }} --ssh --reset"
tags:
- skip_ansible_lint
become: true

View file

@ -0,0 +1,28 @@
$ANSIBLE_VAULT;1.1;AES256
61613033666561393035356531613466643362366535653731663139373731343531343563353536
3336336562636364386666643038363731383665306164360a663438366436393662646235313066
33656164613663316261323634313338363966383463663237326666616432376339326163376532
6563643561353333640a616437366234336564636535333737306632326538303330353265623464
37386463333661383865376562643738633137376334303834313161356435363734333062393533
31643261633539653465343633643462636561656535393939356565663130393731393236306636
36366539346465343231633732326337613830636264346435333465616230343464343064306562
30666330356465326461373630623131623430303732313337653261633136303233353838623465
31623339613866333137633231653332613239323838616366666330336164383338326231663031
38386631633932326563353533343737313935313936613537326231616435343763303065653064
61656133336132623361353061613761656434303431623163613636396665373838313836306133
35373333656263636438306237623033336339666266626236343230393931653434373966373264
33643134393538363636386137356237323839393466356336373563336639363766663763616336
63356635356339643235333062656231656664386164346461613130613533346466363936633031
33666635313436623665613432616531373965623030626635643131356462613363616435643131
33353631653633306234646335643736313762393566323636366239366463333039656666323038
63333666633862663166333136626635616333343064306636316539393835396136636263393064
64306161386331343663656631323830613033353461376665356139313665333863333361396635
63386162653434343335613965616139393235636139613230646330333638623262303761663364
39373231376334663931323831643738643436346235396530346362646332613030626238356262
36633739313538666134353839373533633332653931633466663466343139356434663631306232
35633965353964656465303032623637343863643639626434356365383861613430363764626234
66353265666532316338323663633337363164343432386430366439326534663230313432323661
33336335316164666664663938363064323832333061366534303137373363636365336466393431
34306132623533653739363837616663343962353262393339353430613530303133373965316230
66303265306637376364373262383565363432633433346466616532663038363135333536323436
333438366635366138373139363934623234

View file

@ -0,0 +1,63 @@
$ANSIBLE_VAULT;1.1;AES256
34353062623938366662383432393634346662663535663364383433633264343063643530313331
3265636131383138633439653033623737616662653031640a316462303466316465623965303635
34646234396465373835656230373063306439363632316231383234363734653362396462323264
6562386262623061390a323239623437306566613363626164373266653736313263663162353061
32656265336536326265653037353662383630343830636561346163626335643864666432623734
61356431396232376164633732656439363438313731396435386139633232366236626639613931
62383864636536313732336239383363316439656366653031313764623930383463343361346661
31346533323835313639393733666338623832373861666239326263613064333932663966363133
32643532633639346537656539313831653762616165326635643336343831343434373335336164
39383566663866303438373638396439303061353030633137353263663739363836663063663137
36366433376330346136353933653064323262656232353632383163353536613336356661336563
39613165326262313362376537633132383164353763376136663962643863356438633836373137
37656138386665636664626363313330353061306434626339343932623938636637306163663366
62653866366236313138346666333637616339356139336436613035613033356562616361356138
64313537363162643535313066643935623939386137646365313063643330343434633662326563
34366366393433343532333863326464656466393532336564666334646233393565633266616639
37303439363538363835306532386563383638316661373763633935626664386661626263363765
36306265326434333863396666333233653163323763663038613962656135323364346337633537
64663166383465643465383835393366336364626562373938336539663062396235376165366665
64623335353438643239393737383434313763653932343562656434626366343530663235373934
66633831653561343666643937363137393166353661646331616339633237343830313536666330
63653861363064636466393831623365343161336633313662366465356233666332323036656231
63383933346331386263353761303735663063643130313639646434613761656331363836376566
36636537303138353665393966363666643233303233376638373161323261353361643734383863
35616164383934616631643763366465323761623562383035653432616231396561666232616464
61613537653437383061623863313861323633303537373132323638663466383133623334393132
35386330346430373164386665393137376631623130636238363036343161613763666339343937
35353265373566353662373166396430663630613239653531653839306363376637643337666463
33366231623231383665343965626461373238343266636230633061356136356432373331333333
38653534323939376235366262336137636361653431306165626165373335396464313831366665
34613538613466383334373439313535346439616235303734383433313765343963316136613062
36646534343765343163656333643565626137653534643261636633356430373861373138373631
62633466666336333735343166616266356130393563323836343562636265643362653766353363
66303361613836363064663339376663653731313561313939303533393333363437613532663763
37353037396264643336653731623264316435636532666631636365333638303137393865303166
34346163353366366664656362333461396363613933316136333766303261613337663963646238
62653130393663613938313563643265303261356238353531643137363436653063646534353131
38376337303664663636643064333433363265656535306162393637393164316265316435306363
30666661336536333061383133333561663536656134386532643735653264316339393936653036
34316235353263346633616137376665393434646361376635646434613936346337626435666461
61636365376266326633616366653734313337336164366639633337316631626633313836373939
65356637623363383730303931386365656561623961376632653030633865363065383463663335
36323161353666613861393535333165653436363565366133306432363537613761643134643035
64613566303661393135656166363936303632623439636532643265663064386261386131333865
31343361656332346433303533323035633632306637346562666532363862313333356438353436
62303531363337663965643532643761626330313166323561356563343138363839343230376139
39393765323439643939666537316530353033323664616262346466646437303466626439636564
31666237373232636661613833643234343135373464333563333638616330346339333961313237
38316530316131303532343461653030373531666336393065386161663139313130653132376236
38653965663365386138626662643366316230646338316261383839633939623039653334383863
30623262376462626264666262333839613965363831653130326333623364346430323739393132
34333235353133636435303462653933343263336132663732373039663434303664323863643962
35663538333335353936383335373538616239303435393661383539623431343766643231663931
62356233346463613363626137616237643032643937646135393934663334373364646365363039
31323064373763343431626665313035386364643464633333653337396339653065353730323262
35313431666432626264363239656562356237306133393232393136313861326535316539396465
36633661323239393830353866636166306436303431633431643436623265373466333762396462
65333162373762303337623965663030373036613032646462303063653832336333373139643338
36353863326133643033303530636135353638633835636232616639316436393661333165303736
31353434356461636361386661373566343139366565353461323133353131373863326531393933
34316237326237623633633665343338386530336633633931356334393162353963323663633061
6162356431626265363331323730356538393036323637633362

View file

@ -0,0 +1,5 @@
---
dependencies:
- role: nginx
nginx_acme_sh_domains:
- umami.polsevev.dev

View file

@ -0,0 +1,25 @@
---
- name: Make project source
ansible.builtin.file:
state: directory
path: ~/umami
owner: ansible
mode: "0755"
- name: Copy compose file
ansible.builtin.copy:
src: docker-compose.yml
dest: /home/ansible/umami/docker-compose.yml
mode: "0644"
- name: Start docker compose
community.docker.docker_compose_v2:
project_src: ~/umami
- name: Copy umami nginx
ansible.builtin.copy:
src: umami.conf
dest: /etc/nginx/sites-enabled/umami.conf
mode: "0644"
become: true
notify: Reload nginx

View file

@ -1,39 +1,39 @@
$ANSIBLE_VAULT;1.1;AES256
39353535343532373237396263626266346462346664633566363139346437316365386339316436
3935626664386664363939393033386137366661326463370a326131336633393362616635386338
31633133393464383332653231313032613131653038376337383931636366386262646162333263
3730386430643439390a636637333664633036316131663534623163303139646533636634653431
64306636623430326136396533663465653666343335363832343231353633396334313661386339
63653935656134383636663435393261633337633966333566336534616639636237663836643731
65343933393765373362633234646334363965613138636139616564636336373930623936623063
33666139613261303362376332343763363936613464376338643762623736613933303064343765
31393733383130333737393239336436373664353830646339616661313265336163323964656465
62663861313264383363653132396531643265643538653136613166396564626564656262656637
31633364333533373232613435343162353636646665343839623630306665343938643531346364
39323335383138633137373132643763326663343437323761623735313166376565333734363039
34356232336262623936386634306636306162356333636164333537383238326266643465366233
39386561623335343532613031313564626534636435316139393137663338333936636462343030
36373936623165356335333532613665323639643264623830333730313635383339663161366433
65353862323331626364613133643262653839316134623963323665623336653962623533343632
61366334623262613133636635316361663365623130336438343061326465303632656163313739
37336562356438376364396231316362656632386634333239663963643634623035653335636131
36313663363639643733353033396436386536653033306630646366366133656662373837353837
38336464303562343863613638633331643662323738623432323339626364353165313234313864
63643334306266633361393962306135623764663836323965333561616337393461326231653939
34363364656338373834666530343838333239363838373530376166383433643031663963313239
39373135343435643332636437383062656633643562623961396666363966356165623134666234
35646163353132386136333665303135643538393830633062656138633335303065623366386133
38633631393463336433656539336363313530373765396532313862323838323161653636393939
31633930376464353032646565373863316337646166333038323339333430656533373737363639
61343034396536373965326664333036616465383831306433396339313635643939356134313366
33323365316162313430323134633839653563393437386161373165616536366532306236643838
32326465626662373433313039376630656265393931393239376461616331303233323438393864
35636366643636616533616436336435646232666431646662383234316465356137316333343936
37396338333436303432663731373238663836383036626533323135633731306466623532383832
37643835313333316634623266333465663635353664316363376332373261623763396263303331
66333462626233383233383739393837333735353736636165323738613131303764366331613265
61323166343437653162333538623932363761666532656230653338666138353139323265616139
66393037396131303831653161633735303562376432616163663766616336653761356561316666
37383731613562623936366139613738356630616261363739313766633936333039396638623233
32376661323266333563323866346666613030383138656366386236323239666636626532316161
3439303331396635626133356564343037626135343731633761
36613265663433633735363365383863316233366437343262376332383339376462303037623131
3236643139316534613739616533643731613337633638380a316465333435373761356662643638
34353430616539633037636432326230316439383566623631643531336366386263326139376634
3565636236613765390a613663323736343430333639643536356634663035633065353932316435
33343133643639316433366337313432373164616263383834333863393436383037626131353338
61363536343138346666636163303431663434396139373432653233383935393834646264346136
36653864366230363163663933643664306639393566306533663932306337343061346637653964
38326564643965346639313861353038303030313761383065616364303665636562653132393862
35343361333561393731663965306235336639613533313330663337313862333933663036363435
34323266373261313963653266363564653335366561613163393034633337363934643361643964
37313234633066313932643031393439643833653330346433613833343034343739663230383835
39363536646132653566633265336565616431613963623439393933346538663932643861646432
30393036386462346538306433393663313238383439653663386130323961343361663665326361
63643334373035303437626565656633373434393062326135333261373332393531326132396136
35643262366232623231646261333530303238396133306564666261393934643832396261343336
33376566323163666135393233623934373235303266323032363234643661363638633663616338
39333266643038346639646434376666663261343335613839393763613631376530663562326239
32383934636461623230313833316338343564653565396164656238316165313233363461373634
34393739353635343337646432326530353632653332316134653235326366643239353639636138
36666530653830346339343864653936653938396638343265653265633764376538656334613936
35623537376632326534363865623834356332623534656236656565646466326235393539373930
38646564636664323530363334383366363032366664333738653662653435313933643935326539
38363366633236346530356633336264643965663562346662366236666266343766626366636633
39626339313462373639363763333038633936373332636363326238646335366639373531303063
63623230383436326564313538636537303533303939636336613264666665623462663135653733
35613531346136633363333938376161633839643166303461306138303237373236663266323463
39636164353963636130656438656261343061353061326639636463316539376631353538666365
38636431393265333062316437383436343138383432323739616363636337613333323635316533
33383334346339346430333939343235353563656661363633343264666530656365303866343339
65323664333565646562623833376233373465653538366337363761656430643839323361386136
35636362383338663431643562316338303164363064383537643038323263303162323265343039
30346233613065366630323165363365336234653662656434616661643230646365306335366532
64353365663035313935393931383435383236353839346635656634396636643361313139383732
31373366313761643537343265666133613362653337323734663166346433356638303333643037
37636266303834346665383532366133343032633234613039303162656231343963346538393935
64353665316538346134653939383963366136656531336161366364393134393737643163396362
66663962333163366634306362323964343634343435633663356631613731346534393264643233
6163333133316133333066333737323739363537636131383662

View file

@ -23,14 +23,52 @@
roles:
- docker
- name: Setup uptime_kuma
- name: Setup Internal Docker Services
hosts:
- havneboks
roles:
- uptime_kuma
- kitchenowl
- name: Setup FTB server
hosts:
- matmonster
roles:
- enigmatica2
- name: Setup umami
hosts:
- umami
roles:
- umami
- name: Setup polsevev.dev + jellyfin proxy
hosts:
- polsevev
roles:
- polsevev.dev
- name: Setup headscale nginx
hosts:
- olympus_entry
roles:
- olympus_entry
- headscale
- name: Setup forgejo
hosts:
- forgejo
roles:
- forgejo
- name: Setup Forgejo actions
hosts:
- byggmester
roles:
- byggmester
- name: Setup filesharing
hosts:
- arkivet
roles:
- arkivet

11
ansible/stress.yml Normal file
View file

@ -0,0 +1,11 @@
---
- name: Stress test homelab (See max power usage and temperature)
strategy: free
gather_facts: true
hosts:
- proxmox
- cronus
tasks:
- name: Stress for 2 minutes
ansible.builtin.command: "stress -c {{ ansible_facts['processor_cores'] * ansible_facts['processor_threads_per_core'] }} --timeout 180"
poll: 0

View file

@ -2,6 +2,7 @@
hosts:
- proxmox
- vms
- vps
serial: 1
roles:
- upgrade

46
terraform/arkivet.tf Normal file
View file

@ -0,0 +1,46 @@
resource "proxmox_vm_qemu" "arkivet" {
name = "arkivet"
desc = "arkivet"
target_node = "hyperion"
agent = 1
onboot = true
clone = "VM 9000"
cores = 4
sockets = 1
cpu = "host"
memory = 2048
# Setup the disk
disks {
ide {
ide2 {
cloudinit {
storage = "cronus_backup"
}
}
}
scsi {
scsi0 {
disk {
size = "15G"
storage = "maskin"
}
}
}
}
network {
bridge = "vmbr0"
model = "virtio"
}
scsihw = "virtio-scsi-pci"
os_type = "cloud-init"
ipconfig0 = "ip=192.168.1.55/24,gw=192.168.1.1"
nameserver = "192.168.1.69"
ciuser = "ansible"
sshkeys = var.ssh_public_key
}

46
terraform/byggmester.tf Normal file
View file

@ -0,0 +1,46 @@
resource "proxmox_vm_qemu" "byggmester" {
name = "byggmester"
desc = "byggmester"
target_node = "hyperion"
agent = 1
onboot = true
clone = "VM 9000"
cores = 4
sockets = 1
cpu = "host"
memory = 2048
# Setup the disk
disks {
ide {
ide2 {
cloudinit {
storage = "cronus_backup"
}
}
}
scsi {
scsi0 {
disk {
size = "15G"
storage = "maskin"
}
}
}
}
network {
bridge = "vmbr0"
model = "virtio"
}
scsihw = "virtio-scsi-pci"
os_type = "cloud-init"
ipconfig0 = "ip=192.168.1.54/24,gw=192.168.1.1"
nameserver = "192.168.1.69"
ciuser = "ansible"
sshkeys = var.ssh_public_key
}

45
terraform/fabrikken.tf Normal file
View file

@ -0,0 +1,45 @@
resource "proxmox_vm_qemu" "fabrikken" {
name = "fabrikken"
desc = "Factorio VM"
target_node = "hades"
agent = 1
onboot = true
clone = "VM 9000"
cores = 4
sockets = 1
cpu = "host"
memory = 4096
# Setup the disk
disks {
ide {
ide2 {
cloudinit {
storage = "cronus_backup"
}
}
}
scsi {
scsi0 {
disk {
size = "15G"
storage = "maskin"
}
}
}
}
network {
bridge = "vmbr0"
model = "virtio"
}
scsihw = "virtio-scsi-pci"
os_type = "cloud-init"
ipconfig0 = "ip=192.168.1.31/24,gw=192.168.1.1"
nameserver = "192.168.1.69"
ciuser = "ansible"
sshkeys = var.ssh_public_key
}

46
terraform/forgejo.tf Normal file
View file

@ -0,0 +1,46 @@
resource "proxmox_vm_qemu" "forgejo" {
name = "forgejo"
desc = "Forgejo"
target_node = "poseidon"
agent = 1
onboot = true
clone = "VM 9000"
cores = 4
sockets = 1
cpu = "host"
memory = 2048
# Setup the disk
disks {
ide {
ide2 {
cloudinit {
storage = "cronus_backup"
}
}
}
scsi {
scsi0 {
disk {
size = "15G"
storage = "maskin"
}
}
}
}
network {
bridge = "vmbr0"
model = "virtio"
}
scsihw = "virtio-scsi-pci"
os_type = "cloud-init"
ipconfig0 = "ip=192.168.1.53/24,gw=192.168.1.1"
nameserver = "192.168.1.69"
ciuser = "ansible"
sshkeys = var.ssh_public_key
}

45
terraform/umami.tf Normal file
View file

@ -0,0 +1,45 @@
resource "proxmox_vm_qemu" "umami" {
name = "umami"
desc = "Analytics VM"
target_node = "hades"
agent = 1
onboot = true
clone = "VM 9000"
cores = 4
sockets = 1
cpu = "host"
memory = 4096
# Setup the disk
disks {
ide {
ide2 {
cloudinit {
storage = "cronus_backup"
}
}
}
scsi {
scsi0 {
disk {
size = "16G"
storage = "maskin"
}
}
}
}
network {
bridge = "vmbr0"
model = "virtio"
}
scsihw = "virtio-scsi-pci"
os_type = "cloud-init"
ipconfig0 = "ip=192.168.1.52/24,gw=192.168.1.1"
nameserver = "192.168.1.69"
ciuser = "ansible"
sshkeys = var.ssh_public_key
}