Skip to content

Instantly share code, notes, and snippets.

@taynguyen
Created November 17, 2020 07:45

Revisions

  1. taynguyen created this gist Nov 17, 2020.
    11 changes: 11 additions & 0 deletions Example nginx revert proxy configuration
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@

    ```
    server {

    server_name taynguyen.dev;

    location / {
    proxy_pass http://127.0.0.1:8080;
    }
    }
    ```