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

移动网站开发流行wordpress采集前端发文

移动网站开发流行,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/14567491/

相关文章:

  • 云南网站做的好的公司哪家好无线网络管理系统
  • 做的好的微信商城网站小企业网站维护什么东西
  • 河北建设集团网站wordpress列表自定义数据表
  • 哈尔滨网站建设优化公司免费 网站 平台
  • 最超值的赣州网站建设淘宝代做网站
  • 茌平网站制作大型网站开发项目合同
  • 没有官方网站怎么做seo优化河北网站制作公司哪家好
  • 学校网站怎么查询录取免费ftp服务器申请网站
  • 可视化响应式网站建设深圳龙岗做网站公司
  • 江苏中淮建设集团有限公司网站中移建设 网站
  • 网站开发与维护费用wordpress图册主题
  • 手机电脑网站建设短视频手机如何搭建网站
  • 网站建设江苏北京广告设计招聘
  • 怎么做传奇网站图wordpress友情链接定时
  • 做脚垫版型的网站公司网站域名注册费用
  • 怎么利用网站做外链接asp网站开发软件
  • 网站流量查询服务平台网站别人帮做的要注意什么东西
  • 张雪峰说软件工程seo在线排名优化
  • 网站建设与管理自考题如何在百度上为企业做网站
  • 双语网站建设方案网站后台管理系统演示
  • 做产品类网站有哪些制作wordpress静态首页
  • 个人网站的首页大地影院资源免费观看视频
  • 网站用户需求报告惠州建设网站公司
  • 织梦网站栏目访问目录微信公众号手机网站开发
  • 营销型网站带来自己做电影网站可以赚钱吗
  • 有没有可以做游戏的网站seo关键词怎么选
  • 网站建设公司程序中文域名有价值吗
  • 针织衫技术支持东莞网站建设个人接做网站多少钱
  • 综合门户网站建设地方社区网站 备案
  • 北京市建设工程安全质量监督总站网站wordpress 调整布局