nginx安装及配置

Posted RestfulCoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx安装及配置相关的知识,希望对你有一定的参考价值。

一、nginx下载地址:https://nginx.org/en/download.html

二、下载之后解压缩到一个不包含有中文的目录。

三、使用命令行进入nginx目录。运行命令nginx启动,运行命令nginx -s stop或者nginx -s quit停止。

四、修改配置文件conf/nginx.conf。下面是test-vue项目的一个配置文件。

#user nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;


events {
  worker_connections 1024;
}


http {
  include mime.types;
  default_type application/octet-stream;

  #log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘
  # ‘$status $body_bytes_sent "$http_referer" ‘
  # ‘"$http_user_agent" "$http_x_forwarded_for"‘;

  #access_log logs/access.log main;

  sendfile on;
  #tcp_nopush on;

  #keepalive_timeout 0;
  keepalive_timeout 65;

  #gzip on;

  server {
    listen 8099;
    server_name localhost;

    #charset koi8-r;

    #access_log logs/host.access.log main;

    location / {
      root E:/test-vue/dist;
      index index.html;
      try_files $uri $uri/ /index.html;
    }

    #error_page 404 /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
      root html;
    }
  }
}

以上是关于nginx安装及配置的主要内容,如果未能解决你的问题,请参考以下文章

nginx安装及配置(待续)

Nginx安装配置及调优

编译安装nginx及简单优化配置

Nginx安装CentOS7安装Nginx及配置

Nginx安装配置及使用总结

CentOS7安装及配置Nginx服务