美文网首页工作生活
nginx 学习笔记

nginx 学习笔记

作者: 犯色戒的和尚 | 来源:发表于2019-07-02 18:10 被阅读0次
# 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;
# include servers/*;
    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;
    keepalive_timeout 60;
    server {
        listen 8000;
        server_name _;
        access_log logs/host.access.log  main;
        location / {
            root /Users/litengfei/Desktop/gps-transfer-web/dist;
            index index.html;
            try_files $uri $uri/ /index.html;
        }
        location /apis/ {
            include uwsgi_params;
            proxy_pass http://127.0.0.1:5050/;
            add_header Access-Control-Allow-Origin *;
            add_header Access-Control-Allow-Headers X-Requested-With;
            add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_connect_timeout 5;
        }
        location = /50x.html {
            root html;
        }
        error_page 404              /404.html;
        error_page 500 502 503 504  /50x.html;
    }
}

相关文章

  • Nginx学习笔记-基本操作

    title: Nginx学习笔记-基本操作date: 2018-07-08tags: [nginx]categor...

  • Nginx学习笔记-项目部署

    title: Nginx学习笔记-项目部署date: 2018-08-18tags: [nginx]categor...

  • Nginx学习笔记

    Nginx学习笔记 目录 yum安装nginx 本地编译安装nginx niginx配置文件说明 1.yum安装n...

  • Nginx安装使用教程

    一、Nginx代理转发到应用服务1、 Nginx入门学习笔记Windows系统:1、到nginx官网下载,解压即可...

  • Nginx

    Nginx学习笔记 1、Nginx初识 Nginx 是一个高性能的Http和反向代理服务器。也是一个IMAP/PO...

  • Nginx学习笔记

    1.什么是负载均衡?通过某种负载分担技术,将外部发送来的请求按照某种策略分配到服务器集合的某一台服务器上,而接收到...

  • nginx学习笔记

    一、常见服务器 Apache \ IIS \ Tomcat \ Lighttpd \ Nginx 二、nginx....

  • Nginx学习笔记

    基于《实战Nginx:取代Apache的高性能Web服务器》 2010年版本 第一章 Nginx简介 1.Ngin...

  • Nginx学习笔记

    Nginx在运行时有一个主进程和多个worker进程,主进程负责总体管理等工作,比如重新加载配置文件以及管理wor...

  • Nginx学习笔记

    nginx的启动参数 例子: 检查配置文件是否正确,只做语法检查,并不进行测试. nginx -t -c 启动服务...

网友评论

    本文标题:nginx 学习笔记

    本文链接:https://www.haomeiwen.com/subject/rlvthctx.html