Move upload
to grimes
This commit is contained in:
parent
909f693cba
commit
b339cb0e2d
3 changed files with 9 additions and 9 deletions
|
@ -42,6 +42,7 @@
|
||||||
- plausible
|
- plausible
|
||||||
- duplicati
|
- duplicati
|
||||||
- pages
|
- pages
|
||||||
|
- upload
|
||||||
|
|
||||||
- hosts: pve-docker
|
- hosts: pve-docker
|
||||||
roles:
|
roles:
|
||||||
|
@ -55,7 +56,6 @@
|
||||||
- hosts: walker
|
- hosts: walker
|
||||||
roles:
|
roles:
|
||||||
- contessa
|
- contessa
|
||||||
- upload
|
|
||||||
- duplicati
|
- duplicati
|
||||||
- gitlab_pages
|
- gitlab_pages
|
||||||
- deluge
|
- deluge
|
||||||
|
|
|
@ -5,7 +5,7 @@ services:
|
||||||
image: minio/minio:latest
|
image: minio/minio:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/tank/upload:/data
|
- ./files:/data
|
||||||
command: server /data --quiet
|
command: server /data --quiet
|
||||||
environment:
|
environment:
|
||||||
- MINIO_ACCESS_KEY={{ minio_access_key }}
|
- MINIO_ACCESS_KEY={{ minio_access_key }}
|
||||||
|
@ -19,7 +19,7 @@ services:
|
||||||
image: theorangeone/static-server:latest
|
image: theorangeone/static-server:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/tank/upload/img:/srv:ro
|
- ./files/img:/srv:ro
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.routers.img.rule=Host(`img.theorangeone.net`) || Host(`img.0rng.one`)
|
- traefik.http.routers.img.rule=Host(`img.theorangeone.net`) || Host(`img.0rng.one`)
|
||||||
|
@ -29,7 +29,7 @@ services:
|
||||||
image: theorangeone/static-server:latest
|
image: theorangeone/static-server:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/tank/upload/background:/srv:ro
|
- ./files/background:/srv:ro
|
||||||
environment:
|
environment:
|
||||||
- FANCY_INDEX=on
|
- FANCY_INDEX=on
|
||||||
labels:
|
labels:
|
||||||
|
@ -41,7 +41,7 @@ services:
|
||||||
image: theorangeone/static-server:latest
|
image: theorangeone/static-server:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/tank/upload/download:/srv:ro
|
- ./files/download:/srv:ro
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.routers.dl.rule=Host(`dl.theorangeone.net`) || Host(`dl.0rng.one`)
|
- traefik.http.routers.dl.rule=Host(`dl.theorangeone.net`) || Host(`dl.0rng.one`)
|
||||||
|
|
|
@ -104,7 +104,7 @@ resource "cloudflare_record" "theorangeonenet_srv_matrix" {
|
||||||
resource "cloudflare_record" "theorangeonenet_img" {
|
resource "cloudflare_record" "theorangeonenet_img" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "img"
|
name = "img"
|
||||||
value = var.walker_ip
|
value = linode_instance.grimes.ip_address
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ resource "cloudflare_record" "theorangeonenet_img" {
|
||||||
resource "cloudflare_record" "theorangeonenet_dl" {
|
resource "cloudflare_record" "theorangeonenet_dl" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "dl"
|
name = "dl"
|
||||||
value = var.walker_ip
|
value = linode_instance.grimes.ip_address
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
@ -120,7 +120,7 @@ resource "cloudflare_record" "theorangeonenet_dl" {
|
||||||
resource "cloudflare_record" "theorangeonenet_bg" {
|
resource "cloudflare_record" "theorangeonenet_bg" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "bg"
|
name = "bg"
|
||||||
value = var.walker_ip
|
value = linode_instance.grimes.ip_address
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
@ -128,7 +128,7 @@ resource "cloudflare_record" "theorangeonenet_bg" {
|
||||||
resource "cloudflare_record" "theorangeonenet_upload" {
|
resource "cloudflare_record" "theorangeonenet_upload" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "upload"
|
name = "upload"
|
||||||
value = var.walker_ip
|
value = linode_instance.grimes.ip_address
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue