Skip to content

Instantly share code, notes, and snippets.

@Lobbyra
Created March 15, 2022 15:51
Show Gist options
  • Save Lobbyra/613b4551f05a6010b12765961ba64a9a to your computer and use it in GitHub Desktop.
Save Lobbyra/613b4551f05a6010b12765961ba64a9a to your computer and use it in GitHub Desktop.
proxy reverse nginx model
server {
listen 80;
server_name example.com;
location / {
proxy_pass https://xxxx/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment