静态网站

把网站文件复制 /var/www/html/ 中

[root@localhost ~]# nautilus /var/www/html/

[root@localhost ~ ]# chown -R apache.apache /var/www/html/ *
[root@localhost
~ ]# chmod -R 700 /var/www/html/ *
[root@localhost ~ ]# restorecon -R /var/www/html/ *

[root@localhost ~ ]# gedit /etc/httpd/conf/httpd.conf &

[root@localhost
~ ]# service httpd start   或者   service httpd restart

[root@localhost
~ ]# iptables -F   //清空防火墙规则,让其他机器可以访问WWW服务器

[root@localhost ~ ]# ifconfig        //查看自己的IP地址


[root@bogon html]# netstat -nautp|grep 443
[root@bogon html]# kill -9 xxxx




你可能感兴趣的:(静态网站)