前端小白配置nginx

对nginx还是处于小白阶段,知道的只是简单基础,以下配置没有问题,已实现

文件:nginx-1.15.11\conf\nginx.conf

 

location

location有定位的意思,根据uri来进行不同的定位,在虚拟主机中是必不可少的,location可以定位网站的不同部分,定位到不同的处理方式上。

location 匹配规则可以参考这篇文章

location 匹配规则 - 云丛 - 博客园 (cnblogs.com)

server

每一个server 代表一个服务

# 代表注释

root

配置项目路径root则是最上层目录的定义

alias

alias是一个目录别名的定义 配置项目路径(跳转)

proxy_pass

proxy_pass 代理转发

#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;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen      8080;#本地端口号
        server_name localhost; # 当前名称何以是ip也可以是域名
        charset     utf-8;
        client_max_body_size 75M;   # adjust to taste

        location ^~ /gestep-web/ {
        proxy_pass http://192.168.2.41:8080/gestep-web/;
        #    proxy_pass http://localhost:8083/gestep-web/;
        }
        location ^~ /gestep-image/ {
        proxy_pass http://117.107.179.196/api/yoonuu/;
        #proxy_pass http://192.168.2.88/api/yoonuu/;
        }
        
        location ^~ /gestep-app/ {
            proxy_pass http://localhost:8082/gestep-app/;
        }

        location /playground {
        alias E:/codes/HBuilder/web_ge-pt/;
            #alias E:/codes/HBuilder/web-playground_fork/;
            #alias E:/codes/HBuilder/web-playground_feature_pm/;
        }
    location /app {
            alias E:/codes/HBuilder/web-app/;
        }
    }

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #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;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

HBuilderX.exe配置

打开运行配置

 

 此时的编辑器配置和nginx配置都有playground 名称,配置好nginx后还需重启

posted @ 2019-10-21 15:58  Mir.zhao  阅读(857)  评论(0编辑  收藏  举报