Skip to content

Commit

Permalink
Merge pull request #31 from lento234/homer-update
Browse files Browse the repository at this point in the history
changed removed domain name. moved homer to port 80
  • Loading branch information
lento234 committed Sep 2, 2022
2 parents c55577f + aa648e1 commit e2da6a2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion roles/containers/server/homer/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: homer
image: b4bz/homer:latest
ports:
- "8080:8080"
- "80:8080"
env:
TZ: "{{ timezone }}"
GID: "{{ gid }}"
Expand Down
30 changes: 15 additions & 15 deletions roles/containers/server/homer/templates/config.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -54,25 +54,25 @@ services:
- name: "Plex Media Server"
logo: "assets/tools/plex.png"
subtitle: "Stream Movies & TV Shows"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:32400"
url: "http://{{ ansible_hostname }}:32400"
target: "_blank"

- name: "Photoprism"
logo: "assets/tools/photoprism.svg"
subtitle: "Photo storage at home"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:2342"
url: "http://{{ ansible_hostname }}:2342"
target: "_blank"

- name: "Jellyfin"
logo: "assets/tools/jellyfin.svg"
subtitle: "Stream Movies & TV Shows"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:8096"
url: "http://{{ ansible_hostname }}:8096"
target: "_blank"

- name: "Transmission"
logo: "assets/tools/transmission.svg"
subtitle: "Bittorrent client"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:9091"
url: "http://{{ ansible_hostname }}:9091"
target: "_blank"

- name: "File Storage"
Expand All @@ -81,13 +81,13 @@ services:
- name: "Paperless-ngx"
logo: "assets/tools/paperless-ngx.svg"
subtitle: "Document management system"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:8001"
url: "http://{{ ansible_hostname }}:8001"
target: "_blank"

- name: "Nextcloud"
logo: "assets/tools/nextcloud.png"
subtitle: "File hosting at home"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:8008"
url: "http://{{ ansible_hostname }}:8008"
target: "_blank"

- name: "Automation"
Expand All @@ -96,7 +96,7 @@ services:
- name: "Home Assistant"
logo: "assets/tools/hass.svg"
subtitle: "Home automation"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:8123"
url: "http://{{ ansible_hostname }}:8123"
target: "_blank"

- name: "Monitoring"
Expand All @@ -105,13 +105,13 @@ services:
- name: "Glances"
logo: "assets/tools/glances.png"
subtitle: "Monitoring tool"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:61208"
url: "http://{{ ansible_hostname }}:61208"
target: "_blank"

- name: "Netdata"
logo: "assets/tools/netdata.png"
subtitle: "System Monitoring"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:19999"
url: "http://{{ ansible_hostname }}:19999"
target: "_blank"

- name: "Server"
Expand All @@ -120,23 +120,23 @@ services:
- name: "Portainer"
logo: "assets/tools/portainer.png"
subtitle: "Docker Container Management"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:9000"
url: "http://{{ ansible_hostname }}:9000"
target: "_blank"

- name: "Pi-hole"
logo: "assets/tools/pi-hole.png"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:81/admin"
url: "http://{{ ansible_hostname }}:81/admin"
type: "PiHole"

- name: "Nginx Proxy Manager"
{# - name: "Nginx Proxy Manager"
logo: "assets/tools/nginx-proxy-manager.png"
subtitle: "Reverse Proxy Manager"
url: "http://{{ ansible_hostname }}.{{ domain_name }}:8888"
target: "_blank"
url: "http://{{ ansible_hostname }}:8888"
target: "_blank" #}

- name: "Cluster"
icon: "fas fa-network-wired"
items:
- name: "styx"
icon: "fas fa-anchor"
url: "http://styx.{{ domain_name }}:8080"
url: "http://styx:8080"

0 comments on commit e2da6a2

Please sign in to comment.