-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathproxifier.conf
More file actions
35 lines (24 loc) · 721 Bytes
/
proxifier.conf
File metadata and controls
35 lines (24 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#####################################
# Proxifier Configuration File #
#####################################
### HTTP_PROXY Configuration ###
#Start proxy configuration block
proxy_block "start"
#Proxy type
proxy_type "HTTP_PROXY"
#Proxy server IP address or hostname
proxy_server_address "127.0.0.1"
#Proxy server port
proxy_server_port "3128"
#Proxy username
proxy_server_username ""
#Proxy password
proxy_server_password ""
#Ports whose traffic should be redirected or tunned"
proxy_redirection_port "80, 443"
#Use GET method to for fetching Web page
http_proxy_method_get "80"
#Use CONNECT method to establish a tunnel
http_proxy_method_connect "443"
#End Proxy Configuration block
proxy_block "end"