初学安装linux系统和搭建网站

第一步:

创建用户

创建一个新的用户名:useradd -m ***

设置密码:passwd

设置管理员权限:visudo wiaohui108 ALL=(ALL) NOPASSWD: ALL

第二步:

安装程序软件

emerge -av nginx

emerge -av php-fpm5

配置虚拟主机

cd /etc/nginx/site/

touch xiaohui108.conf

这个配置文件里面的内容

server {

      listen          8080;

      server_name     whp.com;

  

      index index.html index.php;

  

      location = /favicon.ico {

          access_log off;

          log_not_found off;

     }

 

     root /home/whp/www/test/;

 

     location ~ \.php$ {

         fastcgi_pass  unix:/var/run/php-fpm.sock;

         include fastcgi.conf;

     }

 

     access_log      /home/whp/www/logs/test.access_log main;

     error_log       /home/whp/www/logs/test.error_log warn;

 }

建立软链接:ln -s ../site/xiaohui108.conf .

重启服务:sudo /etc/init.d/nginx restart 

配置hosts: 服务器IP:域名

 

你可能感兴趣的:(linux)