- 论坛徽章:
- 0
|
records.config中已经禁止了,你需要修改以允许connect:
# ###################################
# # HTTP Quick filtering (security) #
# ###################################
# This is dedicated and very specific 'HTTP method' filter.
# Note: If method does not match, filtering will be skipped.
# bits 15-0 - HTTP method mask
# 0x0000 - Any possible HTTP method (or you can use 0xFFFF)
# 0x0001 - CONNECT
# 0x0002 - DELETE
# 0x0004 - GET
# 0x0008 - HEAD
# 0x0010 - ICP_QUERY
# 0x0020 - OPTIONS
# 0x0040 - POST
# 0x0080 - PURGE
# 0x0100 - PUT
# 0x0200 - TRACE
# 0x0400 - PUSH
# bits 18-16 - IP address type
# reserved
# bits 30-19 - reserved
# bit 31 - Action (allow=1, deny=0), leave at zero
# Note: if 'proxy.config.http.quick_filter.mask' is equal 0, there is no 'quick http filtering' at all
#
# The default (0x482 or 1154) denies all PUSH, PURGE and DELETE requests (except from 127.0.0.1)
CONFIG proxy.config.http.quick_filter.mask INT 1154 |
|