《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》,点击传送门,即可获取!
charset utf-8;
#access_log logs/host.access.log main; #combined为日志格式的默认值
location / { #请求的url过滤,正则匹配,为区分大小写,*为不区分大小写。
#root path; #根目录
#index vv.txt; #设置默认页
proxy_pass http://127.0.0.1:3000; #指向地址
proxy_pass fzjh ; 请求转向mysvr 负载均衡
deny 127.0.0.1; #拒绝的ip
allow 172.18.5.54; #允许的ip
}
location /check_token { #请求的url过滤,正则匹配,为区分大小写,*为不区分大小写。
proxy_pass http://127.0.0.1:8088; #指向地址
proxy_redirect on;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /logout { #请求的url过滤,正则匹配,为区分大小写,*为不区分大小写。
proxy_pass http://127.0.0.1:8088; #指向地址
proxy_redirect on;
proxy_set_header Host $host ;
proxy_set_header X-Real-IP $remote_addr ;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ;
}
location ~ .aaaa$ { #请求的url过滤,正则匹配,为区分大小写,*为不区分大小写。
rewrite ^/([\w]+)/(.*).air$ /$2 break ;
proxy_pass http://127.0.0.1:8088;
proxy_redirect on;
proxy_set_header Host $host ;
proxy_set_header X-Real-IP $remote_addr ;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for ;
}
#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;
}
#}
}
-
include mime.types; #文件扩展名与文件类型映射表
-
default_type application/octet-stream; #默认文件类型,默认为text/plain
-
#access_log off; #取消服务日志
-
log_format myFormat ’ r e m o t e a d d r – remote_addr– remoteaddr–remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for’; #自定义格式
最后
针对最近很多人都在面试,我这边也整理了相当多的面试专题资料,也有其他大厂的面经。希望可以帮助到大家。
最新整理面试题
上述的面试题答案都整理成文档笔记。也还整理了一些面试资料&最新2021收集的一些大厂的面试真题
最新整理电子书
最新整理大厂面试文档
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》,点击传送门,即可获取!
些大厂的面试真题
最新整理电子书
[外链图片转存中…(img-MHAkUKPp-1714643088694)]
最新整理大厂面试文档
[外链图片转存中…(img-twnnswN2-1714643088695)]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》,点击传送门,即可获取!