← All tools
Text Diff
Type or paste straight into either pane — the comparison updates as you edit.🔒 nothing leaves your browser≠ Different
1server {
2 listen 8080;
3 server_name example.com;
4 location / {
5 proxy_pass http://app:3000;
6 }
7}
1server {
2 listen 9090;
3 server_name example.com www.example.com;
4 location / {
5 proxy_pass http://app:3000;
6 proxy_set_header Host $host;
7 }
8}