alpha
Login
or
Join now
vielle.dev
/
server-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Config files for my server. Except not my secrets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
reverse proxy 25565 to nuc
author
afterlifepro
date
6 months ago
(Dec 30, 2025, 12:22 AM UTC)
commit
04ee2b64
04ee2b64b11d92ff61699fa3b696ae9e1be1ffb2
parent
0be29a4b
0be29a4bc49197a3a9e32bcfe81c3f1355981ccc
+12
-2
2 changed files
Expand all
Collapse all
Unified
Split
compose.yaml
nginx.conf
+1
compose.yaml
View file
Reviewed
···
51
51
restart: unless-stopped
52
52
ports:
53
53
- 22:22001
54
54
+
- 25565:25565
54
55
volumes:
55
56
- ./nginx.conf:/etc/nginx/nginx.conf
56
57
+11
-2
nginx.conf
View file
Reviewed
···
9
9
10
10
stream {
11
11
upstream knot-ssh {
12
12
-
server pi:22001;
12
12
+
server 100.84.64.24:22001;
13
13
+
}
14
14
+
15
15
+
upstream mc-server {
16
16
+
server 100.67.138.93:25565;
13
17
}
14
18
15
19
server {
16
20
listen 22001;
17
21
proxy_pass knot-ssh;
18
22
}
19
19
-
}
23
23
+
24
24
+
server {
25
25
+
listen 25565;
26
26
+
proxy_pass mc-server;
27
27
+
}
28
28
+
}