Initial commit
This commit is contained in:
22
.gitignore
vendored
Normal file
22
.gitignore
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
*.retry
|
||||||
|
*.pyc
|
||||||
|
__pycache__
|
||||||
|
*.tar
|
||||||
|
*.qcow2
|
||||||
|
.*.swp
|
||||||
|
*_ssh.cfg
|
||||||
|
*.db
|
||||||
|
*.log
|
||||||
|
ztoken*
|
||||||
|
.ztoken*
|
||||||
|
*~
|
||||||
|
ca_db
|
||||||
|
.vault_prod
|
||||||
|
.DS_Store
|
||||||
|
roles_galaxy/
|
||||||
|
collections_galaxy/
|
||||||
|
custom*
|
||||||
|
.vscode
|
||||||
|
.secrets.sh*
|
||||||
|
secrets.sh*
|
||||||
|
|
||||||
29
ansible.cfg
Normal file
29
ansible.cfg
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
[defaults]
|
||||||
|
inventory=hosts
|
||||||
|
roles_path=./roles_galaxy:../roles
|
||||||
|
collections_path=./collections_galaxy:./collections_galaxy/ansible_collections
|
||||||
|
log_path=./ansible_apps.log
|
||||||
|
timeout=30
|
||||||
|
hash_behaviour = merge
|
||||||
|
forks=8
|
||||||
|
#mitogen for ansible2.10+
|
||||||
|
#strategy_plugins = ~/mitogen/mitogen-0.3.21/ansible_mitogen/plugins/strategy/
|
||||||
|
#strategy = mitogen_linear
|
||||||
|
#display_skipped_hosts = False
|
||||||
|
#display_ok_hosts = False
|
||||||
|
|
||||||
|
|
||||||
|
[privilege_escalation]
|
||||||
|
become=True
|
||||||
|
become_method=sudo
|
||||||
|
become_user=root
|
||||||
|
become_ask_pass=False
|
||||||
|
|
||||||
|
[ssh_connection]
|
||||||
|
ssh_args=-F ./ssh.cfg -o ControlMaster=auto -o ControlPersist=30s
|
||||||
|
control_path = /tmp/ansible-%%r@%%h:%%p-%%n
|
||||||
|
scp_if_ssh=True
|
||||||
|
|
||||||
|
[inventory]
|
||||||
|
enable_plugins = ini
|
||||||
|
ignore_unknown_plugins = True
|
||||||
24
deploy_gitea.yml
Normal file
24
deploy_gitea.yml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
- name: "Prepare dirs for gitea docker"
|
||||||
|
hosts: gitea
|
||||||
|
tasks:
|
||||||
|
- name: "Make dirs"
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ item.path }}"
|
||||||
|
state: directory
|
||||||
|
owner: "{{ item.owner }}"
|
||||||
|
group: "{{ docker_group }}"
|
||||||
|
mode: "{{ item.mode }}"
|
||||||
|
loop: "{{ compose_dirs }}"
|
||||||
|
|
||||||
|
- name: "Bring cert"
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: "templates/gitea/{{ item }}.pem"
|
||||||
|
dest: "{{ docker_compose_data_dir }}/config/{{ item }}.pem"
|
||||||
|
loop:
|
||||||
|
- cert
|
||||||
|
- key
|
||||||
|
|
||||||
|
- name: "Deploy gitea docker"
|
||||||
|
hosts: gitea
|
||||||
|
roles:
|
||||||
|
- role: docker_compose
|
||||||
56
group_vars/gitea/vars.yml
Normal file
56
group_vars/gitea/vars.yml
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
docker_compose_project_name: gitea
|
||||||
|
docker_compose_data_dir: /data/compose/gitea # default: "/srv/compose/{{ docker_compose_project_name }}"
|
||||||
|
docker_compose_dotenv: |
|
||||||
|
GITEA__database__DB_TYPE=postgres
|
||||||
|
GITEA__database__HOST=db:5432
|
||||||
|
GITEA__database__NAME=gitea
|
||||||
|
GITEA__database__USER=gitea
|
||||||
|
GITEA__database__PASSWD={{ db_password }}
|
||||||
|
GITEA__server__PROTOCOL=https
|
||||||
|
GITEA__server__ROOT_URL=https://gitea.homedungeon.xyz:443/
|
||||||
|
GITEA__server__HTTP_PORT=443
|
||||||
|
GITEA__server__CERT_FILE=/etc/gitea/cert.pem
|
||||||
|
GITEA__server__KEY_FILE=/etc/gitea/key.pem
|
||||||
|
GITEA__server__REDIRECT_OTHER_PORT=true
|
||||||
|
GITEA__server__PORT_TO_REDIRECT=443
|
||||||
|
POSTGRES_USER=gitea
|
||||||
|
POSTGRES_PASSWORD={{ db_password }}
|
||||||
|
POSTGRES_DB=gitea
|
||||||
|
docker_compose_definition:
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
image: docker.gitea.com/gitea:1.25.4-rootless
|
||||||
|
env_file: .env
|
||||||
|
restart: always
|
||||||
|
user: "1002"
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/gitea
|
||||||
|
- ./config:/etc/gitea
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
ports:
|
||||||
|
- "443:443"
|
||||||
|
- "2222:2222"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: docker.io/library/postgres:14
|
||||||
|
env_file: .env
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./postgres:/var/lib/postgresql/data
|
||||||
|
compose_dirs:
|
||||||
|
- name: "data"
|
||||||
|
path: "{{ docker_compose_data_dir }}/data"
|
||||||
|
mode: "0755"
|
||||||
|
owner: "reaper"
|
||||||
|
- name: "config"
|
||||||
|
path: "{{ docker_compose_data_dir }}/config"
|
||||||
|
mode: "0700"
|
||||||
|
owner: "reaper"
|
||||||
|
- name: "postgres"
|
||||||
|
path: "{{ docker_compose_data_dir }}/postgres"
|
||||||
|
mode: "0700"
|
||||||
|
owner: "999"
|
||||||
|
docker_group: "reaper"
|
||||||
178
group_vars/gitea/vault.yml
Normal file
178
group_vars/gitea/vault.yml
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
$ANSIBLE_VAULT;1.1;AES256
|
||||||
|
39363230393732323561643661393361636536616638323764616637353839336165386266376130
|
||||||
|
3061316532363638613030353961633839646462376339660a316366353231663335356464366433
|
||||||
|
64383737323433656231633133656364316238396636343132653861366561393065623535386266
|
||||||
|
3133386166313137630a643730393737316365653939646130396662303831643034393035323462
|
||||||
|
37336563333836343435623335666234613164373135323366333937623234333537333533343461
|
||||||
|
36373831623537653165353434636138623339343130636661316238396666313634393631646266
|
||||||
|
64323266323938313066303238643861386336316462393231636439653232623430316162336338
|
||||||
|
32326365353563323636373665383737346166366237363632653139396330623437653666333338
|
||||||
|
35306563383938373333623862373037373638633864653963353531346361626261653463363063
|
||||||
|
36303236313063376139306562363765353462393164613964316135333133326165636339626437
|
||||||
|
64326331353964303033383436386539633535373430303136626237356361353033343234343535
|
||||||
|
31363061333034396633663232373433376363643938653066353163656431316438643362636464
|
||||||
|
34353566356536363431336466356264353431353537656262386239626234363263623465306134
|
||||||
|
66386365323665376132663137343664303435373439613561613530313432323766396166626333
|
||||||
|
33323639643139346666323832313932336433323330393631313937316465343736653462643835
|
||||||
|
35383864636662303538613933393239366239373864306363353565373034396162643636653436
|
||||||
|
37376431633439356230376464373262623739383164643638363235323437323665646634643361
|
||||||
|
36303932346363376331346436366362396565303364656437366665613764616564303830326264
|
||||||
|
33393733393434653565623834636630643832393465333361393438313931356339376562323235
|
||||||
|
34326636663763366161356363646332383937613535626561633762323830396165333430636265
|
||||||
|
63656634613931393837633666353234393434626633376338363539626435313239653236633761
|
||||||
|
61653631653234393961303164336531326165323563326132373933393139623864653465633866
|
||||||
|
63666263643732383263343462393364393832353631383665323436336139313139376336323661
|
||||||
|
66633031363135633237646564633366323565336537613039613735666334366531313435663938
|
||||||
|
34316466613132373330373464363237626461306162653562643063616262333165333561653663
|
||||||
|
31373466663662353332303566323635636163633831316535363263613761666163393135363430
|
||||||
|
64643737346432343363353137383930353830346361323064386533323563303837653666383063
|
||||||
|
62643037643663343663386437383064346333363239346432616437323561303566616631383538
|
||||||
|
36646635343031373764333635353866383039366334623332623439353133313165623066363661
|
||||||
|
35306465613466356633306532633965623839656330376438383032306562343862333632393765
|
||||||
|
30343662333330613766363938373964653735653631363335613861376165616233396561646262
|
||||||
|
62383932666638393938653332306161386462386162346438356338326461343265646363626633
|
||||||
|
39343831643261353035333962333037313566386638383063376361636134323563306138363765
|
||||||
|
39383763623664336633306539376463626365346536363534373739383838346533633236313735
|
||||||
|
36646539383737363562613536653230356137646366366136333934303666646431316237343738
|
||||||
|
32653937333434313666663366393961306562363661653935653763343764306333396134653539
|
||||||
|
33303035613361303038343862356363623735316666353464333762636631363532386231303365
|
||||||
|
39373764393363373635373130336364346162343538373235656139393535376366356539626433
|
||||||
|
63626365303039653866383337373038653235373836323463303733656463646430643339363235
|
||||||
|
31613434643465343035663265626137353731376631383764343564303061643030333238663237
|
||||||
|
64623035336563336435666364323165323765643336343836316636306364646365636165366261
|
||||||
|
66393632366664346234353233343239663166633836336535396362326235373435646666313632
|
||||||
|
63333938343561303566303434396539653965656233363635346632353661653738373063373733
|
||||||
|
36396132393931633032353839633138613836393965346539313635643238366430316666646139
|
||||||
|
64626363386437386534373230616539353161363231633734363735316330323536636630326238
|
||||||
|
39353138386239653031303765386663346336323962636232323134626236653636643631313863
|
||||||
|
32643936636630323166636638306532356466613739313366386236396462663266363234326434
|
||||||
|
35383837386238393464363662393630303132343862356332353539393331343532393661383139
|
||||||
|
64326565336264396662303038323230623938336439393035666230653161636237353861386165
|
||||||
|
34646561323761396338613033363134613538623464366265356235613839316366376363396335
|
||||||
|
34626135633831353137363936313938386530626532653833656266373364663533653933623864
|
||||||
|
32376361316662306336393137373133393533326235383166353732376366643030613835363232
|
||||||
|
31373665653865666263643739633438336330653235653639323734383234306263363639376565
|
||||||
|
35636239366338323732336264633762623836376463636635616436323239353535343966643962
|
||||||
|
32653730376637376432373832666438363164663733326436613935646531323833336661333132
|
||||||
|
63373137623237653334323633333066643936633832346666346636313964313034666635323766
|
||||||
|
35366231346466343063646336656565343262396333366365613037373335313266346664353637
|
||||||
|
39366464313265663363323236363566316335306438316638363232623366383333353066363035
|
||||||
|
37646137336264353739343832393665336539613333393665343865626563306637646661316531
|
||||||
|
31396666383638306539613139323733376133373166313537623236376533633338353736626462
|
||||||
|
62303435333365333865616564396164663163303337393931666430376234306531656666396131
|
||||||
|
66313838333566373338343664343937346438343138333433376533326331306431643363336362
|
||||||
|
37626336326261396637666361373465613963356364306564636237323236323864323065653732
|
||||||
|
38646563396437313866643332393735646666393530653332633562326464636332393238663930
|
||||||
|
38626336303961333233633637666434633531383730346138346633666463656438316465623038
|
||||||
|
66336364363361393663366135363032613561646262306331323831613834353463323734353937
|
||||||
|
31376365623361646463613464313438313632313161613237356231626234646363646331343133
|
||||||
|
61356463353765616639626162303433383933643934373631383964366237656462396132333264
|
||||||
|
30646637633462363337303265333266343836633961363132653538643337616332646634346265
|
||||||
|
64383365336235616231376561643138333530633766393934343464303061393533303862316661
|
||||||
|
61323738376637343430623363366265323234383238303536656264333537353434336334306338
|
||||||
|
33343137636462353266393637653361303938643062623564373535326139346531636330316631
|
||||||
|
30623331376132376363623736333636613261636332343862353864316236616663663833313438
|
||||||
|
37366366653361656461663137396231363531303831633664643733356639316532303636393337
|
||||||
|
65643037383730623033313164303333396633383030333732643932313937376639656661343061
|
||||||
|
38333237303031343334363536313739393263616139333762656638373332613132623965663161
|
||||||
|
66393036323735343737386234613762303564333830376136646463393565373138613035323131
|
||||||
|
33616335623332306138303033363161386533616361666139333131356436623766316634633635
|
||||||
|
30303133613832333332643530356561643662333663363364363832623535306461396632323865
|
||||||
|
36323664336561353131303762323830393063346565633136613732376366376130643338633533
|
||||||
|
30363331353836636432383864393031313632636132383838653039663965643737356339363131
|
||||||
|
63613331663837646337383965666439366165313433653930636165393539313339356531303731
|
||||||
|
34393731666430303766303536326337613732393265313065363033313934356430643135303732
|
||||||
|
37636536633965633930306532666434326239663536393039326564356439393764663138396662
|
||||||
|
39656561643065356334303862653832323562626161363365633231346238633932323763653961
|
||||||
|
31373632313238643339363431656537633836636564353262396466633430346466366534396130
|
||||||
|
39373965346639306565323364653530383062323132323931336164666363373135333763323134
|
||||||
|
31333165316636373466353535656332383662396339656139663837303135633033373139346562
|
||||||
|
37393664653033336363393134353231366132346130636231366166643961376565353837313932
|
||||||
|
65356266386261353133336534373130363166353263383439623237653837343338623762366463
|
||||||
|
37373334616230323761376633333834616231633636383235626332626165326266316164623034
|
||||||
|
62353839393339616430393662396631643431313030613834383438656536626633376363323634
|
||||||
|
37623434653933346666633062376331323135393335333439326563316663343733643534623034
|
||||||
|
33663631653839313738616365336133646334643833653261333365376631323664633564666439
|
||||||
|
30326234356461616261303237356335666262646361636664643965306533666138363738346539
|
||||||
|
32363434313631393764326333626431326162643434376563623134653035643930653234323266
|
||||||
|
63623665303431623233666466383361633533316266396435313730363630363632343039663833
|
||||||
|
61653236663230386432323637353831306330396335343738346436326466633336306131613536
|
||||||
|
62346164326139353761343131393032653239356264306161623635646139323835303633613166
|
||||||
|
63663065346435316533346433653630333064356139343731353964303261306166383338356339
|
||||||
|
35383365373335336335623165376338616465383162663534623966356461323765336631653264
|
||||||
|
33313936306336663436336162643737316366613132633237306337613661336663373136346435
|
||||||
|
31653230333263633066356336323537613163383964393735386666643935363661323136643866
|
||||||
|
38616333663332343637666662343262643235323761383232393864353661316162663865393335
|
||||||
|
62303662633831646437393133626636356661383062346532383664646664346539313734323636
|
||||||
|
31346435333763316164386663303664663130346436626161323731373638326339316435343364
|
||||||
|
65313034336664636339313838336261343033343433303361666436633838383737303130663364
|
||||||
|
36633935313766306435386464353134336535346231646661323832386463393131663935303761
|
||||||
|
61613639373365383065623761653736326162316134313033393763633638313130323061623133
|
||||||
|
63303031643264363431373561303237656236623934366438313362653530623464366539353035
|
||||||
|
32346366623838336133656161613566346366373432303663316561653934373230613133373964
|
||||||
|
39663236373335643835393132376362393831306230303765663034326664323532656361656239
|
||||||
|
64633238623666323561633033343235393134643232643963643133313561353331623031613565
|
||||||
|
61353131323761633336663266383633653135623037333534636334323838646433613464633965
|
||||||
|
61643266393832343961313837323931316430666234653530353536643062323837376333333833
|
||||||
|
39323661626330396434343735346537663463653966366164383862323130386236653738653638
|
||||||
|
33313135333264656462386564393139316231643966366530326632663133343230633563373437
|
||||||
|
36626264616539346433383433343633306135656234376333623934323139396434653839636566
|
||||||
|
37326463353036643031376439343139373164656631626434666532626565633433656563626465
|
||||||
|
32383364623838326138633131356530643833396561616565636532376163613832303238313834
|
||||||
|
65323831376566306537343565343965376132303833666236363231303564663936386238366262
|
||||||
|
33626131333638383233376533653037363865336335383836666465303538313330636166643865
|
||||||
|
38383363333530373065313562613032326665653363613230653532303737383331326531643465
|
||||||
|
39343461393833396365383239356361356566373235626635646666643661303337343565613930
|
||||||
|
63346335393562346565613739393336326538303537623962306663326462366531383732653432
|
||||||
|
37643639636238393636376134313435616530626134363538303132633962386534373336663138
|
||||||
|
35663033316365343835623933613136373366303463356263656665346438366561616232623466
|
||||||
|
38386365326235376561643831343332376636383865333666366166643361626139633362616235
|
||||||
|
66396437373139323931373736666134626464353163373265346661393536616463396430613634
|
||||||
|
32353230396235376231346532666162636536633731336530393936373230333533613966356438
|
||||||
|
34356335616136363461383532333234343464663732303462303635313361626566653961626339
|
||||||
|
36623766396635356433626465666233656466333833346531356163346430376634646462643534
|
||||||
|
39646538356135313736613361656661613530613634356136303465623935363636346161646162
|
||||||
|
38323833336366303331343132313338643764356233346639326231623533353037373032316134
|
||||||
|
36346665653266376165353139366262643031306166333339333437303030616333306534353934
|
||||||
|
65386665383461636637323935623739623563386133356134663762353066356130383065363739
|
||||||
|
33663063616537353964343036303132343362656435313963656532383831643232356638656664
|
||||||
|
64333530343732613736366632383462366436613134663462326636343935636565323532653534
|
||||||
|
32336434363630633739653938393639656362363064653338383336343239333263386637613964
|
||||||
|
39356464306232653233383164653239303139313065383038323033303736626363643137313063
|
||||||
|
62356530333561613231636338353737393039653131623032323066363635303632393531616466
|
||||||
|
39316631306237613739666338613666366337623833343234336135336564306661363232623331
|
||||||
|
36346239393430636137313633663364623031336337386539333731333365363136623130646466
|
||||||
|
32666233343363633639363334366237346463613634666430646335316162343461353763623935
|
||||||
|
38346439363032636139613535346337326161316135323162313233653931396232333166333939
|
||||||
|
62343837353934373838386139333532356238353738626132306663656665356531643237386363
|
||||||
|
30313035343732613935303161663436303062313766653866343339333363353036356234623436
|
||||||
|
30653535343663663530343661643437353337313664616661353362363537363730386633373330
|
||||||
|
34353762386163306638646163613464306663343762623731626366373935316138633961356161
|
||||||
|
63643631326464656363333331663133393161333463376331636261383536623264623838323164
|
||||||
|
64326663393964653236326332623734663664313935663935313938666635363635343038656432
|
||||||
|
35313735376138343333613632376631333766633335323730316531326662386139356164643564
|
||||||
|
30663733323637336265383733633661343731306161643439336661666166323231333866366634
|
||||||
|
62383234643365363066323662646539386564336464303436656337393735613433376339643866
|
||||||
|
33393835393035306235623966623439346439613032623035636664313439326261656236353766
|
||||||
|
38393830306330343733366339316366386664363239303666653033356637663133386433323938
|
||||||
|
62303232363136653032313266633837343135323832356337393462376166363463663935383062
|
||||||
|
64323036303333623435613638356630386434633938383763313735623661666166386362316362
|
||||||
|
61316436663465383531646134363431396539313861366630613862326230386363623230663439
|
||||||
|
61313433653939383539393365666138326539363032356434636265656637313061306661346437
|
||||||
|
36663239656165663337643231383963613464323335396433393463363564336336633131336436
|
||||||
|
65636466346236346338653462643239623262343865646262343532653764656137626337393864
|
||||||
|
31353561353165343166396330343335326431376165333137653632363762623563353730623234
|
||||||
|
35363764633466613531383864636666346363646137663961646233643230343630323838393862
|
||||||
|
63343266393136646133653339386339336330356562666662623561393863393938383438373465
|
||||||
|
37353262303239366133343738303733663066353162383630636462623633366231333761353664
|
||||||
|
63396162613366376137323961393762386566303437613839323965323061373264323932373436
|
||||||
|
30353135326664373663623535613438356161323737633363633631356436623733383364623064
|
||||||
|
36386565326634323461333861313137343039393365353036336363333135666631373535613432
|
||||||
|
34313763366561346638356136643038326331326661373834376463386439306238373335343731
|
||||||
|
66663136323839623030666133316462343931666332613331313732343134616135373735363337
|
||||||
|
38393963373732333330626565336162376561636666643666326635666461376136366631633336
|
||||||
|
30323061623665653336613535323163336637313739633033616436396266616164373763333333
|
||||||
|
31336432376466353438323238396234653631393530353762313836633466636332366139376631
|
||||||
|
66663738303537393031333166653238363538306332623565386435336635643233336437663061
|
||||||
|
62346431313461383039666232393461393933313965333139313635646439373531303032346563
|
||||||
|
6531
|
||||||
5
hosts
Normal file
5
hosts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[vms_debian:children]
|
||||||
|
gitea
|
||||||
|
|
||||||
|
[gitea]
|
||||||
|
gitea.homedungeon.xyz
|
||||||
3
requirements.yml
Normal file
3
requirements.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
roles:
|
||||||
|
- src: git+ssh://git@gitea.homedungeon.loc:2222/roles/docker_compose.git
|
||||||
|
name: docker_compose
|
||||||
3
ssh.cfg
Normal file
3
ssh.cfg
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
Host gitea.homedungeon.xyz
|
||||||
|
User reaper
|
||||||
|
Hostname 45.91.193.223
|
||||||
89
templates/gitea/cert.pem
Normal file
89
templates/gitea/cert.pem
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
$ANSIBLE_VAULT;1.1;AES256
|
||||||
|
62366139636233666266373061383335363734393066663436313332373130626630313765326666
|
||||||
|
6235623837326661353261623239653765373932386634380a383732636562633937616136363639
|
||||||
|
62666539616366646366376539633231356634623132396531313132306433383339633930666631
|
||||||
|
3564323031353334620a303262343634653562633531613563376365326631656631613162343434
|
||||||
|
64323566643166626539643434336662396662363038646263316662326564666439386338613134
|
||||||
|
39623737633262323335633930356433646633633333323431613464626533616233623832613338
|
||||||
|
32643661323531636237653434323161363064663936373165316138306361356230356633653933
|
||||||
|
63303035666630633861613566373363656662613361646138616531613639623233343831363166
|
||||||
|
34333439363333353463353939646635393963313231303562313335636237373932386332613039
|
||||||
|
35396230386233343032633962633363653730636563313566653036386164393337613262323364
|
||||||
|
33623939636636303934393236306439363539613563656537396566633433313035633362336635
|
||||||
|
64653566333137613738353661326464633531653663656436373865313366666437636533316134
|
||||||
|
30306437343463653737623934633238613966336662383231356633646238623663636162303364
|
||||||
|
38666330336431636232653330626433396235376430633538666366386232363431663432303866
|
||||||
|
61303435353635333161646162383462636666353162663566633964613031656434383830343937
|
||||||
|
32623834656264383961393763363161393636386134656432393833313234353663346331333866
|
||||||
|
63373739326565333762326265646266343339653033366137316334633837386263383261656361
|
||||||
|
65306636613633333465346630643737653465646638393339656631666465333630626431363732
|
||||||
|
61393861373737613565636637663635666262623334633233353036616430316162626536623266
|
||||||
|
33633939383665313262613133316338623339626133323765353539633162386433653731633436
|
||||||
|
30343861376261396362653365393535656431306435373035626665313139613835333632653162
|
||||||
|
39633134306666373963363761386461626365393831393736323563376163653437313938386363
|
||||||
|
33336166633563336162393539383637336333333061656130376430336236393236356133373838
|
||||||
|
61363865643831353833303066643233373662343861323833646339626231656137346232306634
|
||||||
|
39303263663534623834366339653963643433313231313533376531666363316333326432306132
|
||||||
|
30646462306134383738363130393764346261336134343934356236663362326539633234636431
|
||||||
|
38383038323635343938613037356634346363303461386539343062303662376561306264373431
|
||||||
|
38666161636230336465643630643966653538306165366633613434383066663762613639343332
|
||||||
|
65633434393031373061393237313132363263343330303862356437373266366663373134393166
|
||||||
|
32386535343338643063356339383835373834386530363139313961616639373864396133396539
|
||||||
|
30336333626535323237633733653465356435643530316631363135363965303634316130306263
|
||||||
|
66623537663365313031316638303331653064373866363134303437383632383335626335396166
|
||||||
|
31353961643137376532653163333338373162633861616161313536303137333531356566326462
|
||||||
|
36356639376564326137663336306632363234373361383662356663343333363935303436363937
|
||||||
|
38323238313632373561383866666231363338393264313938313166636238366161323861353337
|
||||||
|
61653235626161333566653639636237356161303131643564653435326432363263306238323738
|
||||||
|
33323662616635613339353764343339656335363962656632633635316136313732313464346332
|
||||||
|
66646161363933646164306331633932396433303663326136623866643166343939323536313639
|
||||||
|
31313437323537623336303030383936643738363039623135393966383436333039386235613435
|
||||||
|
39383432393466623562356531343661623934626232313861616639353962386465306463636230
|
||||||
|
31393836633466643061616132376434396664666430336365303261653161326265363761393765
|
||||||
|
63326238343139303361633633313838646562626132663230363633336163623462383931643665
|
||||||
|
35666565383238623431333964396362393730646231363238653864643061353634656632643830
|
||||||
|
31306334313063356263363432366533636236393434646139313038646438343835656536393436
|
||||||
|
38343764306335306139633738353033343235323565366239646665613335333736316136323130
|
||||||
|
39373263626662343663353337623134393634666230653933396539623636353763653935376634
|
||||||
|
35623635643937646330303933333966366230636662333235626433333438626536376262383934
|
||||||
|
33376534633664613637333961623137333635393536303538346638353434636338623035373362
|
||||||
|
36613738653439633361636130343064666662376137316261386239633261383332623933643134
|
||||||
|
61646133366237336235313730316638346464623933383461356431303831393265396463656665
|
||||||
|
65343730363263356430306532316637343831383938376463363161376464333135613533363736
|
||||||
|
32303139663434373665393531656435643137383664376639353631303035383965393461326437
|
||||||
|
64333432353162643431363261623036666566636533313638613565366534363665616432623837
|
||||||
|
62396630653034396363313633386230626138353866343765373563306337333930363335326337
|
||||||
|
32363337646531666335633032666365656438353432656162633734363536626439343932623563
|
||||||
|
35616437373966646164336561346666323766353466656564383231386637386335336632373065
|
||||||
|
35636137393064633539643962623366373530386161653563316465633839396531656434363665
|
||||||
|
36653066366361396163363866623638383532346535613932363135343832306230323966643039
|
||||||
|
33393733323333653533613130303363623665346366363239613030633039623662333536373930
|
||||||
|
65616133383830623963356631616431303362323732633230636538643166623937316138383665
|
||||||
|
66323030336332643631396161656132643538393064386461623761616366383733336132633935
|
||||||
|
34366436336364336335656535393233366337373261616236393334626366643935383230343038
|
||||||
|
32393662336665636261633235343062653737323438353831356536353264653166323831336230
|
||||||
|
37653334336566663933333761336464303531353836363062643863626562636232343366613738
|
||||||
|
33353432616137643232613237383539373163623134326132303666623034313130643030646634
|
||||||
|
30396366613730653630623534366537333034303562623936656335323730346664643239356363
|
||||||
|
39616635646635386433363430326635626536643334393765316138383939666536373538663139
|
||||||
|
36356234663265323965393261336262616161663938663036336237353261393765643664653232
|
||||||
|
65396262353831653263363565353262393964336261303732626638653838386166626636636133
|
||||||
|
61623739353664616662353061653736663131623934613561353430666163653032653065633834
|
||||||
|
34336632353030623637313831356136343837666564666166393133393561616263323933376531
|
||||||
|
64313164633935656465316236353263636632323134386536326537353735383061623730383733
|
||||||
|
66386461613736373633353964343730323133316530656361396337666366313963326665353735
|
||||||
|
61646530343366616262643462303731356536646530363237656665303262666237323330353462
|
||||||
|
65336435616665623334313033346433336134366537633463363564323237656331393162363931
|
||||||
|
31356238663531376433663338336432363038366437653031313263653066376539343037383335
|
||||||
|
39313233363835616232393635616636646435393832646239336632343566393336626266623765
|
||||||
|
30306634343133313263626666643832623564316635353632343430366438316138316433383830
|
||||||
|
66346234343131643866323065613438373831653761393862653237336366636465616539313431
|
||||||
|
30653437313434663930323932653963653166373962383062373164306364386364663330373031
|
||||||
|
38323530353464383139353864336539663835366334636531643164323633626532616432313561
|
||||||
|
62666339656265396538356431326566333163323036633766613962646131663837386331636163
|
||||||
|
30663964346565626432386437623036313036343338643362386661346465643533653965326663
|
||||||
|
64663462303263353537353862393961613961656430653162633639313935626437326233353162
|
||||||
|
62313439643639326261393534356561626663653564373135363461323339303734333461363430
|
||||||
|
32363132326435326336343439316633343337616165633463363137616337623032303235363063
|
||||||
|
34396131386334656262303733623835363764613034633531666166656437336432386335666164
|
||||||
|
31656533353061643230
|
||||||
90
templates/gitea/key.pem
Normal file
90
templates/gitea/key.pem
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
$ANSIBLE_VAULT;1.1;AES256
|
||||||
|
33303936373133303432653739666366393864633134663832626535636461626261623238313361
|
||||||
|
6166393731323537303565653764613733373763303563390a363939623831623536653836633663
|
||||||
|
63316234616162373135326637393932333232363634383133666664393362646435353437613939
|
||||||
|
6364313530623066620a326664653832393663633064393335646231383030353134343630653138
|
||||||
|
32613638363633383832356438366164626365343233623233636539636430653038356230633962
|
||||||
|
66323564663034663762356536356435646466303330666134393561376535356138643931303338
|
||||||
|
32646237383934336261653633313064623962333835373732353966386337306433333061336238
|
||||||
|
34353163356361366333363337343539333432333338663532613438633139363364396234393337
|
||||||
|
34316535373134376237663563633732656164613662323232396562373764633635656436326633
|
||||||
|
64643263373466386438666166363162653063363833613564306138363062313030336265313765
|
||||||
|
63353738323138626466626330336334626230633635656435303666373361353365393332613035
|
||||||
|
37323562636133376464643130373930636638363464626238646564663664626335393333633833
|
||||||
|
32303838363362666664303166383437353166653730383433653936393837386539613738643261
|
||||||
|
31666536363434346361363962303833366364353039663466336337366539383938323365323865
|
||||||
|
31616137386239303330366134303433613831356131376237363565336239363562626131326362
|
||||||
|
32303132663431633632396532653534303339313133336465366133636335316566646437353166
|
||||||
|
37343162623334633261633337643737616234346266653731643464636135313235656433633332
|
||||||
|
37366563303866663464636336373230306335336335346330623538666466396461366539373962
|
||||||
|
39346539386234633865343765353230613638353466643963306633353031616338323664383232
|
||||||
|
62663334663762346431656435633035386131323231393634616637646534326666626465616237
|
||||||
|
61376636366462346565613564346164313533333065396465396331363135633238353836643937
|
||||||
|
30396637303335303733343836306364313864353434646434663937393837376532376336313463
|
||||||
|
61376164663738363134666239333934306133393136363139333431303337366365646630363266
|
||||||
|
39316465306331373566666139613033393635633963666464353131323939613635366536356539
|
||||||
|
66303330343835623162643038653630303866356632366438373738306137636237636361366233
|
||||||
|
33643936613630366666393361636262316538363465326635316466353436653536363961343138
|
||||||
|
36313261653832313431326163373937353937383136663538613964653164383833373862393563
|
||||||
|
64636463663433323434633133306666616165353037303534626530626636316565383266313766
|
||||||
|
32343965386366373462613334393633363963666339363637313932636332333536346234383733
|
||||||
|
35396362323963643938643030393162663734646137336133343830363535336633373162626365
|
||||||
|
62646433396332343135303265616233373561333932353762363063623531373933393236623033
|
||||||
|
36353636316435333161316236353034623332336133353665623564383735343965653065346165
|
||||||
|
33626366396239383138386430323938323830643632383762366264626330323533376232616439
|
||||||
|
36366235303738343939353035626264663962306463636362396164393833373162646338383133
|
||||||
|
32363332366362656230643061646266393562313433316334363731653238393037343939656564
|
||||||
|
31303937636331323833313365316262643134306433383037333563373763353535613738633764
|
||||||
|
65623563363365333262653635303938353364323430393564353963373431383033353737643039
|
||||||
|
30363539373938623438303930346161316137323637613265303133656438353732623634636430
|
||||||
|
64393330656533356437393539313638353761373236613064393833343233643139613365636361
|
||||||
|
31636536643438316361376336633761346532373039316465333761653662656430353232356537
|
||||||
|
65363138646463616161653465326161393937636234393739373864663062666166373764366561
|
||||||
|
31326338383339366362306166653739626232343337336266336663636538346261663833346565
|
||||||
|
39386465666661323966303238346365643236343266313135346565616162343363313962306363
|
||||||
|
32333532656331633665656564653134373430383631613933383437623566383538613139383266
|
||||||
|
38343264343434393034633431363832616439373538616232616566313534353237616365663430
|
||||||
|
34323564303931646231386430633538353461363139643966613435303835643139656332343736
|
||||||
|
31306561303932313430393230633434643234303130643331303436386238363532633666333566
|
||||||
|
31616234636634303364653034623832653065336433376232386337333733373937343065656636
|
||||||
|
39373838306234633137333866373236626533376566356162313236393962393431303065613063
|
||||||
|
37633565333763333832353564393834396664616139653362326162323936613765326432346537
|
||||||
|
35656337616333396131376231633636363134623339356434633430313036623965313635386137
|
||||||
|
66333531623731643134626261353966353764353263356364366230333033306234313462656130
|
||||||
|
64336439653861643161303233666637343863313762663065363231343463356231313639353131
|
||||||
|
39633962613563613165616663656432636634366366663364383532336237663665393861326439
|
||||||
|
38323566393832366635333939663962303964646361623765386235303134383138386663353761
|
||||||
|
33636232393933353866363864316263333562376261643132336162363361353765666134303163
|
||||||
|
38333064383662663263643165663666376631323463653363313961636461333730353433643431
|
||||||
|
65366138633136373164643730623663613435366130393939623538333737353163376436363239
|
||||||
|
31303565653632333835376432323065333030626537323236353232613962306339303762633735
|
||||||
|
38613863333966613735376331323336313862643232643865386264313639376565353837383362
|
||||||
|
32326566383231613731356465383532333432653636366162643962663033306533613837323264
|
||||||
|
30353932633466353930326236323762346634316432313062646538636435623932376163636462
|
||||||
|
31643433633030356463653633643335323263383862626434386366316262353538643339653339
|
||||||
|
61343037613832313034623365363530656161303263363737663463396134633434643738616638
|
||||||
|
34613630333936306562343666366466313362343838623762323965636166373136363131636466
|
||||||
|
39373433383137383733333132353466633231623537343538353037366664646631386538306463
|
||||||
|
37343732613065656234613234383233323533363935303239333866323931333636346237316432
|
||||||
|
36306563626638343932643134363336333461336164383634336263303636326661373935623664
|
||||||
|
33336463336435613766636431623265323363303537383763333938663036383638323762393261
|
||||||
|
36313531616234626539336231633131316566313235613665613639623563356531313534656163
|
||||||
|
32383564633431323661656363346363633766653765363437396164346232663363396364653433
|
||||||
|
63663865303963353233356632383765646139646632626238346236356264623163623962376461
|
||||||
|
34636263643230653732336336626537633437346166633330386234343366633061373664306531
|
||||||
|
39616338343033323361616162333037623864343064666339356362623638666432353032373430
|
||||||
|
38333737303734636161353035613535346338396334656632326535646333306430373038663138
|
||||||
|
38303365303039363634666136393561646637323135623838663662373965373466306265626438
|
||||||
|
37326130373331616263356535643266366636376439336564653739656465336539626339613231
|
||||||
|
64626639346637363564613237356434633264366631346337333064333339383234303137333261
|
||||||
|
34333561303261616563663465626530633831383639353061663139373039636265613762626231
|
||||||
|
65626333323738393037343035363462643861313537396364326466383835333139386133626136
|
||||||
|
61343036323630316638643764626438383834656437613563353530303862666362336336343534
|
||||||
|
30636361656634356364323538366334316634333766643038623530376434323866363839656238
|
||||||
|
63653835343432306666663833616234363131336433306566353732663334623036323662613561
|
||||||
|
38303435663435626638626136316135636238373765646662376334336338353239393232346161
|
||||||
|
36353836643731623635313864316361396264393139306266376462343939663039623535346165
|
||||||
|
66303038613232303431343062653434386564633531373931303962363566303165353439363334
|
||||||
|
63633732363865326232376563663334353032343837323234386230386535643732356638353236
|
||||||
|
32386234616366633864636362653330646230376264333839353138353331376634323565313834
|
||||||
|
39316365343330613339306364363262303433326633313862343062653731303661
|
||||||
Reference in New Issue
Block a user