Ubuntu 命令行 安装nginx

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu安装nginx与配置

使用 Nginx 限流

ubuntu 14.04安装nginx+php

ubuntu 14.04安装nginx+php+mysql

Ubuntu安装Nginx

ubuntu安装Nginx