tangled
alpha
login
or
join now
vielle.dev
/
server-config
2
fork
atom
Config files for my server. Except not my secrets
2
fork
atom
overview
issues
pulls
pipelines
service tweaks
vielle.dev
3 months ago
b808697c
ec82ff86
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+2
-13
3 changed files
expand all
collapse all
unified
split
compose.yaml
docker-up.service
tangled-on-commit.service
+1
-1
compose.yaml
···
50
50
image: nginx
51
51
restart: unless-stopped
52
52
ports:
53
53
-
- 22001:22001
53
53
+
- 22:22001
54
54
volumes:
55
55
- ./nginx.conf:/etc/nginx/nginx.conf
56
56
-11
docker-up.service
···
1
1
-
[Unit]
2
2
-
Description=Preload docker
3
3
-
After=network.target
4
4
-
5
5
-
[Service]
6
6
-
Type=oneshot
7
7
-
ExecStart=/bin/bash /root/server-config/commit.sh
8
8
-
WorkingDirectory=/root/server-config
9
9
-
10
10
-
[Install]
11
11
-
WantedBy=multi-user.target
+1
-1
tangled-on-commit.service
···
5
5
6
6
[Service]
7
7
ExecStart=/bin/tangled-on-commit
8
8
-
WorkingDirectory=/root/server-config
8
8
+
WorkingDirectory=/home/admin/server-config
9
9
Restart=always
10
10
RestartSec=30s
11
11