ADDED FORWARD PROXY CONFIGURATION AND CLIENT (#11708)

This commit is contained in:
Olsi Seferi
2022-03-07 17:58:13 +01:00
committed by GitHub
parent b42eb6a670
commit b0817de146
4 changed files with 371 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
server {
listen 8888;
location / {
resolver 8.8.8.8;
proxy_pass http://$http_host$uri$is_args$args;
}
}