File structure

This commit is contained in:
2022-11-03 15:20:56 +01:00
parent 6823c84e5f
commit 42cb515813
4 changed files with 2 additions and 2 deletions

6
config/nginx.txt Normal file
View File

@@ -0,0 +1,6 @@
server {
server_name paste.plabble.org;
location / {
proxy_pass http://127.0.0.1:8080;
}
}

11
config/openrc.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/sbin/openrc-run
# Copyright 2022 Plabble
start() {
podman rm pastabble-c || true
podman run --name pastabble-c -p 8080:8080 -v pastabble-v:/data -dt pastabble
}
stop() {
podman stop pastabble-c
}