update some file naming for stupid

This commit is contained in:
2025-12-30 19:43:05 -07:00
parent 1b0972aa7a
commit 19a9c1e530
3 changed files with 29 additions and 25 deletions

View File

@@ -51,21 +51,21 @@
name: epel-release name: epel-release
state: present state: present
#- name: Install podman - name: Install podman
# package: package:
# name: podman name: podman
# state: present state: present
#
#- name: Install podman-compose - name: Install podman-compose
# package: package:
# name: podman-compose name: podman-compose
# state: present state: present
#
#- name: Start and enable podman service - name: Start and enable podman service
# service: service:
# name: podman name: podman
# state: started state: started
# enabled: true enabled: true
- name: Create pangolin config and logging directories - name: Create pangolin config and logging directories
file: file:
@@ -84,7 +84,7 @@
- name: Create pangolin config - name: Create pangolin config
template: template:
src: templates/config.yaml.j2 src: templates/config.yaml.j2
dest: /home/pangolin/config/config.yaml dest: /home/pangolin/config/config.yml
owner: pangolin owner: pangolin
group: pangolin group: pangolin
mode: 0600 mode: 0600
@@ -92,7 +92,7 @@
- name: Create traefik config - name: Create traefik config
template: template:
src: templates/traefik_config.yaml.j2 src: templates/traefik_config.yaml.j2
dest: /home/pangolin/config/traefik/traefik_config.yaml dest: /home/pangolin/config/traefik/traefik_config.yml
owner: pangolin owner: pangolin
group: pangolin group: pangolin
mode: 0600 mode: 0600
@@ -100,7 +100,7 @@
- name: Create traefik dynamic config - name: Create traefik dynamic config
template: template:
src: templates/dynamic_config.yaml.j2 src: templates/dynamic_config.yaml.j2
dest: /home/pangolin/config/traefik/dynamic_config.yaml dest: /home/pangolin/config/traefik/dynamic_config.yml
owner: pangolin owner: pangolin
group: pangolin group: pangolin
mode: 0600 mode: 0600
@@ -113,9 +113,9 @@
group: pangolin group: pangolin
mode: 0600 mode: 0600
#- name: Run podman-compose up - name: Run podman-compose up
# become: true become: true
# become_user: pangolin become_user: pangolin
# command: podman compose up -d command: podman compose up -d
# args: args:
# chdir: /home/pangolin chdir: /home/pangolin

View File

@@ -28,9 +28,13 @@ services:
- NET_ADMIN - NET_ADMIN
- SYS_MODULE - SYS_MODULE
ports: ports:
- "[::1]:51820:51820/udp"
- 51820:51820/udp - 51820:51820/udp
- "[::1]:21820:21820/udp"
- 21820:21820/udp - 21820:21820/udp
- "[::1]:443:443"
- 443:443 # Port for traefik because of the network_mode - 443:443 # Port for traefik because of the network_mode
- "[::1]:80:80"
- 80:80 # Port for traefik because of the network_mode - 80:80 # Port for traefik because of the network_mode
traefik: traefik:

View File

@@ -17,7 +17,7 @@ http:
- web - web
middlewares: middlewares:
- redirect-to-https - redirect-to-https
- badger - badger
# Next.js router (handles everything except API and WebSocket paths) # Next.js router (handles everything except API and WebSocket paths)
next-router: next-router: