当前位置: 首页 > news >正文

做图书馆网站展厅设计平面布置图

做图书馆网站,展厅设计平面布置图,网站建设嘉兴公司电话,群晖wordpress教程某俄罗斯小哥#xff0c;竟靠一个服务器软件直接封神#xff1f; 介绍篇 反向代理 正向代理#xff1a;A想要认识C#xff0c;A没有办法直接跟C聊天#xff0c;所以A通过B把消息传给C。 反向代理#xff1a;表面上访问百度都是访问www.baidu.com#xff0c;实际上域名…某俄罗斯小哥竟靠一个服务器软件直接封神 介绍篇 反向代理 正向代理A想要认识CA没有办法直接跟C聊天所以A通过B把消息传给C。 反向代理表面上访问百度都是访问www.baidu.com实际上域名后面有N多具体的ip服务器。 区别是否对代理有感知有就是正向代理没有就是反向代理。 负载均衡 我有一台服务器负载100个请求我新增一台服务器通过负载均衡的配置例如轮训策略每一台服务器承担50个请求这种方式就称为负载均衡。 下载篇 http://nginx.org/en/download.html Linux 第一步下载安装包 Windows 第一步下载安装包 第二步解压zip文件后文件目录如图所示 第三步启动nginx 输入命令nginx.exe 或 双击 nginx.exe 推荐使用命令行启动否则可能会启动多个nginx 第四步访问 http://localhost/。如果出现以下页面代表启动成功。 命令篇 nginx -s stop 强制关闭 D:\nginx\nginx-1.22.1nginx -s stopD:\nginx\nginx-1.22.1nginx -s stop nginx: [error] CreateFile() D:\nginx\nginx-1.22.1/logs/nginx.pid failed (2: The system cannot find the file specified)D:\nginx\nginx-1.22.1nginx -s quit 柔和关闭 D:\nginx\nginx-1.22.1nginx -s quitD:\nginx\nginx-1.22.1nginx -s quit nginx: [error] CreateFile() D:\nginx\nginx-1.22.1/logs/nginx.pid failed (2: The system cannot find the file specified)D:\nginx\nginx-1.22.1 nginx -v show version and exit D:\nginx\nginx-1.22.1nginx -v nginx version: nginx/1.22.1nginx -V show version and configure options then exit D:\nginx\nginx-1.22.1nginx -V nginx version: nginx/1.22.1 built by cl 16.00.30319.01 for 80x86 built with OpenSSL 1.1.1q 5 Jul 2022 TLS SNI support enabled configure arguments: --with-cccl --builddirobjs.msvc8 --with-debug --prefix --conf-pathconf/nginx.conf --pid-pathlogs/nginx.pid --http-log-pathlogs/access.log --error-log-pathlogs/error.log --sbin-pathnginx.exe --http-client-body-temp-pathtemp/client_body_temp --http-proxy-temp-pathtemp/proxy_temp --http-fastcgi-temp-pathtemp/fastcgi_temp --http-scgi-temp-pathtemp/scgi_temp --http-uwsgi-temp-pathtemp/uwsgi_temp --with-cc-opt-DFD_SETSIZE1024 --with-pcreobjs.msvc8/lib/pcre2-10.39 --with-zlibobjs.msvc8/lib/zlib-1.2.12 --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_stub_status_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module --with-http_secure_link_module --with-http_slice_module --with-mail --with-stream --with-opensslobjs.msvc8/lib/openssl-1.1.1q --with-openssl-optno-asm no-tests -D_WIN32_WINNT0x0501 --with-http_ssl_module --with-mail_ssl_module --with-stream_ssl_modulenginx -s reload D:\nginx\nginx-1.22.1nginx -s reloadD:\nginx\nginx-1.22.1nginx -s stopD:\nginx\nginx-1.22.1nginx -s reload nginx: [error] CreateFile() D:\nginx\nginx-1.22.1/logs/nginx.pid failed (2: The system cannot find the file specified)D:\nginx\nginx-1.22.1nginx -s reopen D:\nginx\nginx-1.22.1nginx -s reopenD:\nginx\nginx-1.22.1nginx -s stopD:\nginx\nginx-1.22.1nginx -s reopen nginx: [error] CreateFile() D:\nginx\nginx-1.22.1/logs/nginx.pid failed (2: The system cannot find the file specified)D:\nginx\nginx-1.22.1nginx -t test configuration and exit D:\nginx\nginx-1.22.1nginx -t nginx: the configuration file D:\nginx\nginx-1.22.1/conf/nginx.conf syntax is ok nginx: configuration file D:\nginx\nginx-1.22.1/conf/nginx.conf test is successfulnginx -T test configuration, dump it and exit D:\nginx\nginx-1.22.1nginx -T nginx: the configuration file D:\nginx\nginx-1.22.1/conf/nginx.conf syntax is ok nginx: configuration file D:\nginx\nginx-1.22.1/conf/nginx.conf test is successful # configuration file D:\nginx\nginx-1.22.1/conf/nginx.conf:nginx -? D:\nginx\nginx-1.22.1nginx -? nginx version: nginx/1.22.1 Usage: nginx [-?hvVtTq] [-s signal] [-p prefix][-e filename] [-c filename] [-g directives]Options:-?,-h : this help-v : show version and exit-V : show version and configure options then exit-t : test configuration and exit-T : test configuration, dump it and exit-q : suppress non-error messages during configuration testing-s signal : send signal to a master process: stop, quit, reopen, reload-p prefix : set prefix path (default: NONE)-e filename : set error log file (default: logs/error.log)-c filename : set configuration file (default: conf/nginx.conf)-g directives : set global directives out of configuration fileD:\nginx\nginx-1.22.1nginx -h 等同于 nginx -? nginx -c 指定另一个配置文件 D:\nginx\nginx-1.22.1nginx -c conf/nginx2.confTips 正在运行的nginx执行这样的命令时会退出。 配置文件篇 全局块 #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;worker_processes 工作进程数默认为1可以根据CPU处理能力适当调大。 events events {worker_connections 1024; }worker_connections 每一个worker进程支持的最大连接数量默认1024。 http 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 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 Apaches document root# concurs with nginxs 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; 默认类型sendfile on;keepalive_timeout 65; 长连接超时时间#gzip on; 请求压缩相当于拿服务器的CPU资源来换请求的大小从而提升网络传输速度。 server listen 80; nginx默认监听端口server_name localhost; nginx服务名#charset koi8-r; location mime.types 文件中的内容 types {text/html html htm shtml;text/css css;text/xml xml;image/gif gif;image/jpeg jpeg jpg;application/javascript js;application/atomxml atom;application/rssxml rss;实战篇 反向代理 1 修改nginx.conf文件来实现代理www.baidu.com location /baidu {proxy_pass https://www.baidu.com/;}当访问 localhost:80/baidu路径的时候nginx已经帮我们反向代理到www.baidu.com域名下。 2 新增server块来代理9001本地服务 代理前 代理后 3 通过80端口代理本地服务9001配置文件新增内容 游览器效果图 4 通过80端口代理内网ip服务效果图 nginx.conf内容 游览器效果图 负载均衡 upstream srv{server 127.0.0.1:8091 weight1;server 127.0.0.1:8092 weight1;}location / {root html;index index.html index.htm;proxy_pass http://srv;}
http://www.hkea.cn/news/14541437/

相关文章:

  • wordpress制作的网站模板在线制作logo网站
  • 网站建设期末实践报告佛山专业网站设计
  • 网站前台和后台对接做网站弄关键词多少钱
  • 怎么进行网站开发老总办公室装修风格
  • php 个人网站百度seo培训班
  • 怎样创建网站根目录网站备案信息变更
  • 中国风网站模板下载深圳市水平线室内设计有限公司
  • 公路建设市场信用信息系统网站wordpress可以做下载站
  • 嘉兴网站制作案例wordpress编辑页面没用
  • 锦浪科技(300763) 股吧网站优化内容原创
  • 企业展示网站如何做网站快照
  • 免费的微网站制作平台ppt网站链接怎么做
  • ppt模板 网站开发规划设计网站推荐
  • 企业网站建设费怎么核算织梦iis7搭建网站教程
  • 1688网站首页wordpress关于博主页面
  • 哪些网站做农产品电子商务建设银行网站适用浏览器
  • 辽宁网站建设墨子松山湖仿做网站
  • 河南企业网站建设公司外包app开发
  • 宁波网站制作费用seo哪家强
  • phpcms v9网站搬站之后掉出来的文章链接显示为以前网站域名秦皇岛建设厅网站
  • 张家口网站设计响应式设计 手机网站
  • 贵德县公司网站建设零售空间设计公司
  • 做胎压的网站网站建站那个好
  • 咸宁市网站建设网站和软件的区别
  • 做新零售这些注册网站和找货源6西宁网站建设优化案例
  • 页面设计好看的网站哈尔滨网络开发
  • 临沂市开发区可以做分销的网站做酒店工作去哪个招聘网站好
  • 石家庄规划建设局网站门户网站建设多久
  • 建设资讯网站全球做网站的公司排名
  • 晨光文具店网站建设响水做网站的