Compare commits

..

2 Commits

Author SHA1 Message Date
a65b369ae9
Set mountpoint for filestash data. 2023-01-18 00:36:34 -05:00
db6aa259e8
Updated DNS. 2023-01-18 00:24:35 -05:00
2 changed files with 4 additions and 2 deletions

4
dns.tf
View File

@ -20,7 +20,7 @@ provider "namecheap" {}
variable "host-rproxy" { variable "host-rproxy" {
type = string type = string
default = "rprxy-0.saline.o4data.net." default = "rprxy.saline.o4data.net."
} }
resource "namecheap_domain_records" "othonotes" { resource "namecheap_domain_records" "othonotes" {
@ -46,7 +46,7 @@ resource "namecheap_domain_records" "othostash" {
type = "CNAME" type = "CNAME"
} }
record { record {
hostname = "filemanager" hostname = "browse"
address = var.host-rproxy address = var.host-rproxy
type = "CNAME" type = "CNAME"
} }

View File

@ -38,6 +38,8 @@ services:
- LETSENCRYPT_HOST=${filemanager_domain} - LETSENCRYPT_HOST=${filemanager_domain}
- APPLICATION_URL=${filemanager_domain} - APPLICATION_URL=${filemanager_domain}
- ONLYOFFICE_URL=http://onlyoffice - ONLYOFFICE_URL=http://onlyoffice
volumes:
- ./data/filestash:/app/data
networks: networks:
- proxy - proxy
- onlyoffice - onlyoffice