首页 > 代码库 > Ubuntu 命令行 安装nginx

Ubuntu 命令行 安装nginx

一、安装nginx

  apt-get install nginx

二、配置nginx,在d.conf目录下新建test.conf

  

server{    listen 80;    server_name z.z.net;    location / {        root /myfile/hx/;    }}

 

 

 

三、重启nginx

  nginx -s reload

 

四、打开

http://z.z.net/index.html

Ubuntu 命令行 安装nginx