summaryrefslogtreecommitdiff
path: root/nginx/stream.conf
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-11-02 15:39:26 +0800
committerMistivia <i@mistivia.com>2025-11-02 15:39:26 +0800
commitbf805a3acba7f2c624c93af892d823033d47f0c2 (patch)
tree3fa2c86f994fb2da79115ba552412d8818e63a62 /nginx/stream.conf
parenta1f5ffef8fc167d44a2bdfc4b3ba8a0ad39f201b (diff)
add nginx config
Diffstat (limited to 'nginx/stream.conf')
-rw-r--r--nginx/stream.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/nginx/stream.conf b/nginx/stream.conf
new file mode 100644
index 0000000..a3af645
--- /dev/null
+++ b/nginx/stream.conf
@@ -0,0 +1,9 @@
+stream {
+ server {
+ listen 6697 ssl;
+ proxy_pass 127.0.0.1:6668;
+ proxy_protocol on;
+ ssl_certificate /etc/letsencrypt/live/raye.mistivia.com/fullchain.pem;
+ ssl_certificate_key /etc/letsencrypt/live/raye.mistivia.com/privkey.pem;
+ }
+} \ No newline at end of file