安装面板后登陆面板之前直接输入命令
sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js
安装面板后登陆面板之前直接输入命令
sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js
ecshop4.0有两个目录 appserver和ecshp
上传宝塔根目录
api.xx.com绑定appserver
xx.com绑定ecshop
修改配置文件 添加代码
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^ index.php [L]
最后再php管理上删除宝塔默认禁用函数putenv
宝塔最7.0.3版和apacheApache 2.4.41下的测试的
宝塔界面》软件商店》apache的设置》配置修改
1.确认加载include.so模块,将注释去掉:
LoadModule include_module libexec/apache2/mod_include.so
2.AddType部分去掉这两段注释:
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
3.宝塔后台》网站》设置》配置文件》 网站Directory目录权限里面找到
Options FollowSymLinks
修改为
Options Indexes FollowSymLinks Includes
4.重启apache
给宝塔面板建立的网站限制流量
买了限流的vps后可以安装这模块限制总流量
可以限制日周月还有超流量后跳转的页面
wget http://www.idcbaike.com/soft/mod-cband-0.9.7.5.tar.gz
tar zxvf mod-cband-0.9.7.5.tar.gz
cd mod-cband-0.9.7.5
./configure --with-apxs=/www/server/apache/bin/apxs
vi Makefile
...
#APXS_OPTS=-Wc,-Wall -Wc,-DDST_CLASS=3
修改成下面一样 多一个-lm
APXS_OPTS=-lm -Wc,-Wall -Wc,-DDST_CLASS=3
...
:x
make
make install
CBandLimit 800M # 允许跑的流量
CBandPeriod 1D # 可以设置的时间
CBandExceededURL www.idcbaike.com # 超流量后指向的页面
如果需要web查看实时流量
# apache中配置cband-status(用宝塔安装的路径应该是一样的)
# vi /www/server/apache/conf/extra/httpd-vhosts.conf
添加以下代码
<Location /cband-status>
SetHandler cband-status
</Location>
</VirtualHost>
http://ip/cband-status 可以查看到流量情况