Skip to content

Instantly share code, notes, and snippets.

@nguyenhiepvan
Created April 12, 2021 02:17
Show Gist options
  • Save nguyenhiepvan/72c9019b9da6c1164d07a20fb555302a to your computer and use it in GitHub Desktop.
Save nguyenhiepvan/72c9019b9da6c1164d07a20fb555302a to your computer and use it in GitHub Desktop.
stream mysql
#nginx config here
#....
#end nginx config
stream {
server {
listen 12345;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass 127.0.0.1:3306;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment