本文小编为大家详细介绍“nginx与node.js结合使用的方法是什么”,内容详细,步骤清晰,细节处理妥当,希望这篇“nginx与node.js结合使用的方法是什么”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。Node.js是一个基于Chrome JavaScript运行时建立的平台, 用于方便地搭建响应速度快、易于扩展的网络应用。Node.js 使用事件驱动, 非阻塞I/O 模型而得以轻量和高效,非常适合在分布式设备上运行的数据密集型的实时应用,如实时聊天等等。然而对于gzip编码,静态文件,HTTP缓存,SSL处理,负载平衡和反向代理等,都可以通过nginx来完成,从而减小node.js的负载,并通过nginx强大的缓存来节省网站的流量从而提高网站的加载速度。123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869http {proxy_cache_path/var/cache/nginx levels=1:2 keys_zone=one:8m max_size=3000m inactive=600m;proxy_temp_path /var/tmp;include mime.types;default_typeapplication/octet–stream;sendfileon;keepalive_timeout65;gzip on;gzip_comp_level 6;gzip_vary on;gzip_min_length1000;gzip_proxied any;gz免费云主机域名ip_types text/plain text/html text/css application/json application/x–javascript text/xml application/xml application/xml+rss text/javascript;gzip_buffers 16 8k;ssl_certificate /some/location/sillyfacesociety.com.bundle.crt;ssl_certificate_key /some/location/sillyfacesociety.com.key;ssl_protocolsSSLv3 TLSv1;ssl_ciphers HIGH:!aNULL:!MD5;upstream silly_face_society_upstream {server 127.0.0.1:61337;server 127.0.0.1:61338;keepalive 64;}server {listen 80;listen 443 ssl;server_name sillyfacesociety.com;return 301 $scheme://www.trustauth.cn$request_uri;}server {listen 80;listen 443 ssl;server_name www.sillyfacesociety.com;error_page 502/errors/502.html;location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico) {root /usr/local/silly_face_society/node/public;access_log off;expires max;}location /errors {internal;alias /usr/local/silly_face_society/node/public/errors;}location / {proxy_redirect off;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_set_header Host $http_host;proxy_set_header X–NginX–Proxytrue;proxy_set_header Connection “”;proxy_http_version 1.1;proxy_cache one;proxy_cache_key sfs$request_uri$scheme;proxy_pass http://silly_face_society_upstream;}}}123456789http {…upstream silly_face_society_upstream {server 127.0.0.1:61337;server 127.0.0.1:61338;keepalive 64;}…}nginx负载均衡多个nodo.js实例。keepalive 64 指示nginx在任何时候保持最少64个HTTP/ 1.1连接到代理服务器。如果有更多的流量nginx将打开更多的连接。123456789101112131415161718http {…server {…location / {proxy_redirect off;proxy_set_header X–Real–IP$remote_addr;proxy_set_header X–Forwarded–For$proxy_add_x_forwarded_for;proxy_set_header Host $http_host;proxy_set_header X–NginX–Proxytrue;…proxy_set_header Connection “”;proxy_http_version 1.1;proxy_pass http://silly_face_society_upstream;}…}}将符合哪些的请求发送到代理上。nginx的匹配规则可以取看看前面的文章。nginx处理静态内容123456789101112http {…server {…location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico) {root /usr/local/silly_face_society/node/public;access_log off;expires max;}…}}设置缓存123456http {…proxy_cache_path/var/cache/nginx levels=1:2 keys_zone=one:8m max_size=3000m inactive=600m;proxy_temp_path /var/tmp;…}123456789101112http {server { … location / {…proxy_cache one;proxy_cache_key sfs$request_uri$scheme;… } …}}缓存是通过HTTP头部来控制的。读到这里,这篇“nginx与node.js结合使用的方法是什么”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注百云主机行业资讯频道。
本篇内容介绍了“vue引入jquery的方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1.首先,在vue-cli中创建一个vue.js项目;2.vue…
免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。