Compare commits
No commits in common. "2dff2a5b8238065a9b05876fdad443712371ca5e" and "db4a97cc3551408a0561a075bbc8b8da9b42b1d4" have entirely different histories.
2dff2a5b82
...
db4a97cc35
26
dns.yml
26
dns.yml
@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
# dns.yml
|
|
||||||
- name: Add A Records for thesatelliteoflove.com
|
|
||||||
hosts: localhost
|
|
||||||
gather_facts: false
|
|
||||||
|
|
||||||
vars:
|
|
||||||
domain_name: thesatelliteoflove.com
|
|
||||||
dns_records:
|
|
||||||
- name: "pin"
|
|
||||||
ip: "152.53.36.98"
|
|
||||||
- name: "home"
|
|
||||||
ip: "152.53.36.98"
|
|
||||||
- name: "git"
|
|
||||||
ip: "152.53.36.98"
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- name: Add A records for subdomains
|
|
||||||
amazon.aws.route53:
|
|
||||||
state: present
|
|
||||||
zone: "{{ domain_name }}"
|
|
||||||
record: "{{ item.name }}.{{ domain_name }}"
|
|
||||||
type: A
|
|
||||||
ttl: 300
|
|
||||||
value: "{{ item.ip }}"
|
|
||||||
loop: "{{ dns_records }}"
|
|
@ -2,10 +2,6 @@ auth.thesatelliteoflove.com {
|
|||||||
reverse_proxy authentik-server-1:9000
|
reverse_proxy authentik-server-1:9000
|
||||||
}
|
}
|
||||||
|
|
||||||
pin.thesatelliteoflove.com {
|
|
||||||
reverse_proxy pinry-pinry-1:80
|
|
||||||
}
|
|
||||||
|
|
||||||
post.thesatelliteoflove.com {
|
post.thesatelliteoflove.com {
|
||||||
reverse_proxy postiz:5000
|
reverse_proxy postiz:5000
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,3 @@
|
|||||||
- name: Install postiz
|
- name: Install postiz
|
||||||
import_tasks: postiz.yml
|
import_tasks: postiz.yml
|
||||||
tags: postiz
|
tags: postiz
|
||||||
|
|
||||||
- name: Install pinry
|
|
||||||
import_tasks: pinry.yml
|
|
||||||
tags: pinry
|
|
@ -1,19 +0,0 @@
|
|||||||
- name: make pinry directories
|
|
||||||
ansible.builtin.file:
|
|
||||||
path: "{{ item}}"
|
|
||||||
state: directory
|
|
||||||
loop:
|
|
||||||
- /opt/stacks/pinry
|
|
||||||
|
|
||||||
- name: Template out the compose file
|
|
||||||
ansible.builtin.template:
|
|
||||||
src: pinry-compose.yml.j2
|
|
||||||
dest: /opt/stacks/pinry/compose.yml
|
|
||||||
owner: root
|
|
||||||
mode: 644
|
|
||||||
|
|
||||||
- name: deploy pinry stack
|
|
||||||
community.docker.docker_compose_v2:
|
|
||||||
project_src: /opt/stacks/pinry
|
|
||||||
files:
|
|
||||||
- compose.yml
|
|
@ -15,16 +15,8 @@ pages:
|
|||||||
- visit_the_chronicler
|
- visit_the_chronicler
|
||||||
|
|
||||||
- size: full
|
- size: full
|
||||||
widgets:
|
|
||||||
- type: group
|
|
||||||
widgets:
|
widgets:
|
||||||
- type: hacker-news
|
- type: hacker-news
|
||||||
- type: rss
|
|
||||||
limit: 10
|
|
||||||
collapse-after: 3
|
|
||||||
cache: 3h
|
|
||||||
feeds:
|
|
||||||
- url: https://hiro.report/rss/
|
|
||||||
|
|
||||||
- type: videos
|
- type: videos
|
||||||
channels:
|
channels:
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
services:
|
|
||||||
pinry:
|
|
||||||
volumes:
|
|
||||||
- pinry:/data
|
|
||||||
environment:
|
|
||||||
- SECRET_KEY=no2254XiwYFWDnt2UW6wraSbVPRdHx8wVIeBh3jeYcI=
|
|
||||||
- ALLOW_NEW_REGISTRATIONS=False
|
|
||||||
image: getpinry/pinry
|
|
||||||
volumes:
|
|
||||||
pinry:
|
|
||||||
driver: local
|
|
||||||
networks:
|
|
||||||
default:
|
|
||||||
external: true
|
|
||||||
name: lava
|
|
Loading…
x
Reference in New Issue
Block a user