Config files for my server. Except not my secrets
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f42062af946d296c6dfda4e1101f4f32a557aea4 19 lines 300 B view raw
1user nginx; 2worker_processes auto; 3error_log /var/log/nginx/error.log notice; 4pid /run/nginx.pid; 5 6events { 7 worker_connections 1024; 8} 9 10stream { 11 upstream knot-ssh { 12 server pi:2222; 13 } 14 15 server { 16 listen 2222; 17 proxy_pass knot-ssh; 18 } 19}