This commit is contained in:
Roland Schneider
2023-06-06 09:14:58 +00:00
parent e1d153f71c
commit 03f79b2d9f
28 changed files with 450 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
stream{
upstream nuc-ssh {
server ${nuc}:2022;
}
server {
listen 80;
server_name ssh.nuc.rschneider.hu
proxy_pass nuc-ssh;
}
}