FreeBSD上搭建squid代理mysql认证服务器( 三 )


#
# default:
#这个选项就是指定mysql数据库的,如果不是同一台机器,那么请指定ip或者hostname.
hostname localhost
# user
#
# which user can connect to database
# default:
#这个就是mysql_auth是以什么用户连接mysql数据库的默认是squid,如果你想改变,mysql
#数据库中应该有这个用户可以登陆的
user squid
# password
#
# user"s password for database, that store the accounts
# default:
#连接用的密码
password squid
# database
#
# mysql database name, where accounts places are
# default:
#用到的库
database mysql_auth
# next three directives tells what will the select query,
# like this:
# SELECT * FROM table WHERE user_column LIKE "username" AND password_column LIKE "password"
# where username and password comes from client in HTTP header,
# and user_column and password_column is the columns name in table
# this is an easy way to tune this program to your existing database
# table
#
# the table name, where accounts exist in user-password pair
# default:
#用到的表
table data
# user_column
#
# user column name in table
# if you already have a database, what contains user-password
# pair, you can set it here
#帐号字段
user_column user
# password_column
#
# password column name in table
# like user column name above
#用户密码字段
password_column password
【FreeBSD上搭建squid代理mysql认证服务器】# encrypt_password_form
#
# passwords are stored in encrypted form,
# using mysql internal "password()" function
# this mean, you just storing the passwords encrypted format,
# Squid and clients doesn"t use encrypt form!
# The value is case insensitive (YES/yes or not one of these).
# For backward compatibility, default is NO.
#是否使用密码文存储
encrypt_password_form NO

推荐阅读