create project
This commit is contained in:
parent
d2e2e0a627
commit
5136f10ebf
4 changed files with 38 additions and 0 deletions
1
README.md
Normal file
1
README.md
Normal file
|
@ -0,0 +1 @@
|
|||
# relay.beta.fogtype.com
|
17
compose.yml
Normal file
17
compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
nostr:
|
||||
image: scsibug/nostr-rs-relay:0.8.2
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- caddy
|
||||
labels:
|
||||
caddy: relay.beta.fogtype.com
|
||||
caddy.reverse_proxy: "{{upstreams 8080}}"
|
||||
volumes:
|
||||
- nostr_data:/usr/src/app/db
|
||||
- ./config.toml:/usr/src/app/config.toml:ro
|
||||
networks:
|
||||
caddy:
|
||||
external: true
|
||||
volumes:
|
||||
nostr_data:
|
9
config.toml
Normal file
9
config.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[info]
|
||||
name = "Fogtype Relay (beta)"
|
||||
pubkey = "c90a759ab3bc4006f1fe5684a1a0278b41e868580932ad67760f3e52db6112d0"
|
||||
relay_url = "wss://relay.beta.fogtype.com"
|
||||
|
||||
[authorization]
|
||||
pubkey_whitelist = [
|
||||
"c90a759ab3bc4006f1fe5684a1a0278b41e868580932ad67760f3e52db6112d0",
|
||||
]
|
11
renovate.json
Normal file
11
renovate.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base",
|
||||
":automergeAll",
|
||||
":automergeBranch",
|
||||
":skipStatusChecks",
|
||||
"docker:enableMajor",
|
||||
"docker:pinDigests"
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue