fruty_docker-outbound-restriction
user nginx; | |
worker_processes 8; | |
error_log syslog:server=unix:/dev/log warn; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} | |
stream { | |
server { | |
listen 443; | |
proxy_pass google.com:443; | |
} | |
server { | |
listen 80; | |
proxy_pass google.com:80; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment