Nginx学习笔记

Nginx

Core

Location

See https://nginx.org/en/docs/http/ngx_http_core_module.html#location

通过server_name绑定多域名abc.comapi.abc.com。前端访问/直接代理到后端index.html,前端访问a.html代理到后端a.html

server {
	listen 80;
	server_name abc.com *.abc.com;
	location = / {
		proxy_pass 11.22.33.44:80/index.html;
	}
	location / {
		proxy_pass 11.22.33.44:80;
	}
}

www.zhuoludian.com域名永久重定向到landingsite.cn

server {
    listen 80;
    server_name zhuoludian.com *.zhuoludian.com;
    return 301 http://landingsite.cn$request_uri;
}

Nginx if

https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#if

  • a variable name; false if the value of a variable is an empty string or “0”;
    Before version 1.0.1, any string starting with “0” was considered a false value.
  • comparison of a variable with a string using the “=” and “!=” operators;
    matching of a variable against a regular expression using the “~” (for case-sensitive matching) and “~” (for case-insensitive matching) operators. Regular expressions can contain captures that are made available for later reuse in the $1…$9 variables. Negative operators “!~” and “!~” are also available. If a regular expression includes the “}” or “;” characters, the whole expressions should be enclosed in single or double quotes.
    checking of a file existence with the “-f” and “!-f” operators;
    checking of a directory existence with the “-d” and “!-d” operators;
    checking of a file, directory, or symbolic link existence with the “-e” and “!-e” operators;
    checking for an executable file with the “-x” and “!-x” operators.
if ($http_user_agent ~ MSIE) {
    rewrite ^(.*)$ /msie/$1 break;
}

if ($http_cookie ~* "id=([^;]+)(?:;|$)") {
    set $id $1;
}

if ($request_method = POST) {
    return 405;
}

if ($slow) {
    limit_rate 10k;
}

if ($invalid_referer) {
    return 403;
}
#user	root;
events {

}

http {
    server {
        listen 80;
        server_name localhost;
        rewrite_log on;
        location / {
            set $first_language, $language_suffix;
            if ($http_accept_language ~* '^(.+?),') {
                set $first_language $1;
            }
            set $language_suffix 'en';
            if ($first_language ~ '^zh(\-CN?)') {
                set $language_suffix 'zh';
            }
            rewrite ^(.*)$ /$language_suffix/$1 break;
            proxy_pass http://localhost:3000;
        }
        location /api/backend {
            rewrite ^/api/backend/(.*)$ /$1 break;
            proxy_pass http://localhost:3100;
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值