Postingan

Menampilkan postingan dari Februari, 2022

Reverse proxy using NGINX

Add this to nginx.conf  (Configuration) server {     listen 8036;     location / {       proxy_pass   http://otherserver:8036$request_uri;     } }