1:nginx官方文档给出location语法如下:
location [=|~|~*|^~] uri { .......
}
2:路径匹配
- = 开头表示精确匹配。如 A 中只匹配根目录结尾的请求,后面不能带任何字符串;
- ^~ 开头表示uri以某个常规字符串开头,不是正则匹配,是一般匹配;
- / 通用匹配, 如果没有其它匹配,任何请求都会匹配到,也是一般匹配
- ~ 开头表示区分大小写的正则匹配;
- ~* 开头表示不区分大小写的正则匹配;
补充:
1、针对 ~ 和 ~匹配标识符,可以在前面加上!来取反
! ~ 表示正则不匹配,区分大小写
! ~ * 表示正则不匹配,不区分大小写
2、/ 通用匹配,任何请求都会匹配到
[.]表示任意字符、0-多个
[$]是字符串结尾位置
正则表达式使用的时候要在前面用“*”修饰符(用于不区分大小写匹配),或者“”修饰符(用于区分大小写)
3:匹配流程
注意此流程
4:root
location中root指定的只是相对路径,需要和路径结合起来映射地址,比如
location ^~/static/ { ## 这里的root需要和路径结合使用,即是映射的文件位置为 /usr/alyingboy/staticroot /usr/alyingboy/; index index.html
}
此时我们访问 IP/static/a.css ,那么就会找到 /usr/alyingboy/static/a.css
5:alias
alias指定的是绝对路径,不会和location中的路径结合使用,而是直接使用地址映射到文件,比如
location ^~/static/ { ## 不会路径结合映射地址,那么这里就会直接映射到/usr/demo/文件夹下的文件alias /usr/demo/; index index.html
}
6:nginx配置前后端配置文件
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 80;server_name localhost; #注意这里我该了下访问域名charset utf-8;root C:\Users\dell\Desktop\dist; #前端代码访问路径index index.html;#定义index页面error_page 404 /index.html;location /jeecg-boot/api {add_header Access-Control-Allow-Origin * always;proxy_pass http://192.168.11.50:8090/jeecg-boot/api; #后端代码访问路径 proxy_connect_timeout 3;proxy_send_timeout 30;proxy_read_timeout 30; proxy_set_header X-Forwarded-Host $host;proxy_set_header X-Forwarded-Server $host;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 100m;}}# 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;# }#}}