Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oowl/ngx_stream_pass_module
https://github.com/oowl/ngx_stream_pass_module
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/oowl/ngx_stream_pass_module
- Owner: oowl
- License: mit
- Created: 2024-03-18T15:06:22.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-03-18T15:44:43.000Z (10 months ago)
- Last Synced: 2024-11-09T21:24:24.707Z (2 months ago)
- Language: C
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Config
```nginx
user nobody;
worker_processes 1;#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;#pid logs/nginx.pid;
events {
worker_connections 1024;
}http {
server {
listen 8001;
server_name localhost;location / {
proxy_pass http://cip.cc:80;
}
}
}
stream {
server {
listen 0.0.0.0:22346;
pass 127.0.0.1:8001;
}
}```