Standardize string quotes in yaml

This commit is contained in:
Jake Howard
2020-03-25 21:27:15 +00:00
parent 35bd63d12b
commit 1afc28ec17
38 changed files with 102 additions and 98 deletions

View File

@ -53,7 +53,7 @@ services:
gitea-cgit-adapter:
image: theorangeone/gitea-cgit-adapter:latest
restart: unless-stopped
command: "/app/gitea-cgit-adapter /etc/gitea.ini /etc/cgit-repos.txt --interval 600"
command: /app/gitea-cgit-adapter /etc/gitea.ini /etc/cgit-repos.txt --interval 600
depends_on:
- gitea
volumes:

View File

@ -1,4 +1,4 @@
version: '2.3'
version: "2.3"
services:
netdata:

View File

@ -1,4 +1,4 @@
version: '2.3'
version: "2.3"
services:
portainer:

View File

@ -1,4 +1,4 @@
version: '2.3'
version: "2.3"
services:
statping:

View File

@ -1,4 +1,4 @@
version: '2.3'
version: "2.3"
services:

View File

@ -7,7 +7,7 @@
# e.g. matrix.org, localhost:8080, etc.
# This is also the last part of your UserID.
#
server_name: "theorangeone.net"
server_name: theorangeone.net
# When running as a daemon, the file to store the pid in
#
@ -524,7 +524,7 @@ acme:
database:
# The database engine name
name: "psycopg2"
name: psycopg2
# Arguments to pass to the engine
args:
user: synapse
@ -543,7 +543,7 @@ database:
# A yaml python logging config file as described by
# https://docs.python.org/3.7/library/logging.config.html#configuration-dictionary-schema
#
log_config: "/data/theorangeone.net.log.config"
log_config: /data/theorangeone.net.log.config
## Ratelimiting ##
@ -635,7 +635,7 @@ log_config: "/data/theorangeone.net.log.config"
# Directory where uploaded images and attachments are stored.
#
media_store_path: "/data/media_store"
media_store_path: /data/media_store
# Media storage providers allow media to be stored in different
# locations.
@ -654,7 +654,7 @@ media_store_path: "/data/media_store"
# Directory where in-progress uploads are stored.
#
uploads_path: "/data/uploads"
uploads_path: /data/uploads
# The largest allowed upload size in bytes
#
@ -1076,7 +1076,7 @@ form_secret: "{{ synapse.form_secret }}"
# Path to the signing key to sign messages with
#
signing_key_path: "/data/theorangeone.net.signing.key"
signing_key_path: /data/theorangeone.net.signing.key
# The keys that the server used to sign messages with but won't use
# to sign new messages. E.g. it has lost its private key
@ -1135,7 +1135,7 @@ signing_key_path: "/data/theorangeone.net.signing.key"
# - server_name: "my_other_trusted_server.example.com"
#
trusted_key_servers:
- server_name: "matrix.org"
- server_name: matrix.org
# Uncomment the following to disable the warning that is emitted when the
# trusted_key_servers include 'matrix.org'. See above.

View File

@ -1,4 +1,4 @@
version: '2.3'
version: "2.3"
services:
todoist-github:

View File

@ -12,30 +12,30 @@ http:
routers:
hsts:
service: "ping@internal"
rule: "PathPrefix(`/`)"
service: ping@internal
rule: PathPrefix(`/`)
entryPoints:
- web
middlewares:
- hsts
ping:
service: "ping@internal"
rule: "Host(`traefik.jakehoward.tech`) && Path(`/ping/`)"
service: ping@internal
rule: Host(`traefik.jakehoward.tech`) && Path(`/ping/`)
middlewares:
- hsts
tls:
certResolver: le
dashboard:
service: "dashboard@internal"
rule: "Host(`traefik.jakehoward.tech`)"
service: dashboard@internal
rule: Host(`traefik.jakehoward.tech`)
middlewares:
- hsts
- internal-only
tls:
certResolver: le
api:
service: "api@internal"
rule: "Host(`traefik.jakehoward.tech`) && PathPrefix(`/api`)"
service: api@internal
rule: Host(`traefik.jakehoward.tech`) && PathPrefix(`/api`)
middlewares:
- hsts
- internal-only

View File

@ -20,7 +20,7 @@ ping:
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
endpoint: unix:///var/run/docker.sock
watch: true
exposedByDefault: false
file:
@ -32,7 +32,7 @@ api:
certificatesResolvers:
le:
acme:
email: "hosting@theorangeone.net"
storage: "/etc/traefik/acme.json"
email: hosting@theorangeone.net
storage: /etc/traefik/acme.json
httpChallenge:
entryPoint: web