Server Operation Techniques
Using a PC as a proxy to access external networks from a server
1. Start a proxy on the PC, such as nginx
Download nginx: http://nginx.org/en/download.html
Modify the configuration file in the conf directory:
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
...
Posted on Thu, 23 Jul 2026 16:27:35 +0000 by DaveTomneyUK