CentOS7下安装openresty、nginx部署静态资源以及反向代理配置

更新时间:2023-05-29 05:14:07 阅读: 评论:0

方框打钩怎么输入CentOS7下安装openresty、nginx部署静态资源以及反向代理配置CentOS7下安装openresty和启动nginx部署静态资源和作为反向代理
安装步骤
阏与之战
1、准备⼯作
下载openresty-1.13.6. 的包
/cn/download.html
2、安装openresty
2.1、解压这个包
tar -zxvf openresty-1.13.6.
各抒己见
2.2、进⼊后执⾏下⾯命令
./configure
2.3、然后执⾏编译命令
make
2.4、编译完成后
make install
欧阳修书法作品2.5、安装的路径为
cd  /usr/local/openresty
3、启动nginx
3.1、启动nginx放下一个人的句子
sbin/nginx -c f
3.2、查看端⼝是否启动
netstat -anp | grep nginx
3.3、测试是否成功
看到下图就成功启动
公⽹IP
4、部署静态资源
4.1、静态资源拷贝到服务端的⽬录下
包括html和static资源
/usr/local/openresty/nginx/html
4.2、测试访问
公⽹IP/register.html
4.3、修改访问路径
vim /etc/hosts
在配置⽂件⾥修改
公⽹IP  goodskill
4.4、修改f的配置
location /resources/ {
#root  html;
alias /usr/local/openresty/nginx/html/resources/;
index  index.html index.htm;
}
4.5、然后平滑重启nginx
sbin/nginx -s reload
5、nginx作为反向代理
5.1、反向代理配置
upstream backend_rver{
#rver 172.17.0.9 weight=1
rver 172.17.0.9;
}
rver {
listen      80;
rver_name  localhost;
#chart koi8-r;
#access_log  logs/host.access.log  main;
location /templates/ {
#root  html;
alias /usr/local/openresty/nginx/html/templates/;
index  index.html index.htm;
}
location / {
proxy_pass backend_rver;
proxy_t_header Host $http_hosti:$proxy_port;
proxy_t_header X-Real-IP $remote_addr;
proxy_t_header X-Forwarded-For $proxy_add_x_forwarded_for;        }
6、完整配置
#ur  nobody;
worker_process  1;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid        logs/nginx.pid;
events {
worker_connections  1024;
}
http {
include      pes;
default_type  application/octet-stream;
#log_format  main  '$remote_addr - $remote_ur [$time_local] "$request" '    #                  '$status $body_bytes_nt "$http_referer" '
#                  '"$http_ur_agent" "$http_x_forwarded_for"';
fn是哪个键#access_log  logs/access.log  main;
ndfile        on;
#tcp_nopush    on;
#keepalive_timeout  0;
keepalive_timeout  65;
#gzip  on;
upstream backend1{
rver 172.17.0.9:8888;
}
rver {
listen        80;
rver_name  ;妻子的鬼魂
#chart koi8-r;
#access_log  logs/host.access.log  main;
location / {
proxy_t_header X-Real-IP $remote_addr;
proxy_t_header X-Forwarded-For $proxy_add_x_forwarded_for;            proxy_pass  backend1;
index /index.html;
}
#error_page  404              /404.html;
# redirect rver 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  127.0.0.1;
#}李威威
# pass the PHP scripts to FastCGI rver 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-bad configuration    #
#rver {
#    listen      8000;
#    listen      somename:8080;
#    rver_name  somename  alias  another.alias;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
# HTTPS rver
#
#rver {
#    listen      443 ssl;
#    rver_name  localhost;
#    ssl_certificate      cert.pem;
#    ssl_certificate_key  cert.key;
#    ssl_ssion_cache    shared:SSL:1m;
#    ssl_ssion_timeout  5m;
#    ssl_ciphers  HIGH:!aNULL:!MD5;
#    ssl_prefer_rver_ciphers  on;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
}

本文发布于:2023-05-29 05:14:07,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/945106.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:资源   静态   反向   启动   代理   安装   编译   部署
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图