root@Server01:~# vim /data/share/htdocs/skills/index.html # apache首页文件 This is the front page of sdskills's website.
root@Server01:~# vim /data/share/htdocs/skills/staff.html #用户登录访问页面 Staff Information
创建用户,以及创建apache密码文件
1 2 3 4
root@Server01:~# htpasswd -c /etc/apache2/ldap zsuser #htpasswd建立和更新存储用户名、密码的文本文件 New password: #输入密码 Re-type new password: #确认密码 Adding password for user zsuser
修改apache启动用户为webuser
1 2 3 4 5 6 7
root@Server01:~# useradd webuser # 创建用户
vim /etc/apache2/envvars 16 export APACHE_RUN_USER=www-data 改为 16 export APACHE_RUN_USER=webuser