nginx
文章平均质量分 59
# nginx
夏已微凉、
这个作者很懒,什么都没留下…
展开
-
PHP下载文件时,文件太大超时
【代码】PHP下载文件时,文件太大超时。原创 2023-06-11 21:25:41 · 657 阅读 · 0 评论 -
PHP框架对应的 apache,nginx 伪静态整理
【代码】PHP框架对应的 apache,nginx 伪静态整理。原创 2023-01-28 11:21:46 · 541 阅读 · 0 评论 -
gog 中 git提交push到远程时出现error: RPC failed; HTTP 413 curl 22
一、问题描述二、问题分析三、问题解决一、问题描述nohup ./gogs web & 启动 gogs Linux下Gogs二进制安装配置 的时候,可以 git push 项目通过 nginx,配置nginx.conf时候,就报错 error: RPC failed; HTTP 413 curl 22二、问题分析是不是 nginx.conf 中什么配置项限制了文件上传的大小三、问题解决client_max_body_size 默认 1M,表示 客户端请求服务器最大允许大小,在.原创 2022-02-13 13:20:44 · 1873 阅读 · 0 评论 -
nginx反向代理:配置多个应用通过80端口访问(PHP项目)
一、说明二、文件配置二、姊妹篇一、说明这一篇是配置已经打包好了的项目:比如 gogs项目,默认端口 3000 nginx反向代理:配置多个应用通过80端口访问本篇是配置 PHP项目源码他们的区别就是 location / { } 里的配置信息不一样~二、文件配置server{ listen 80; server_name blog.test.com; location / { index index.php index.html index.htm.原创 2022-02-11 22:08:28 · 2463 阅读 · 1 评论 -
HBuilder发布H5,nginx部署
一、说明二、步骤1、manifest.json 基础配置2、manifest.json h5配置3、发行4、发行完毕5、nginx.conf 配置一、说明此功能需要先登录!DCloud开发者中心,没有账号的话去注册一个。二、步骤1、manifest.json 基础配置uni-app应用标识(AppID),不存在请点击 重新获取2、manifest.json h5配置配置 页面标题,运行的基础路径,端口 等3、发行依次选择:发行 -> 网站-PC Web或手机H5(.原创 2022-02-10 14:46:25 · 6175 阅读 · 1 评论 -
nginx反向代理:配置多个应用通过80端口访问
一、需求二、配置三、proxy_http_version 说明四、他山之石一、需求就是根据传入的域名,访问不同的应用,域名后是不带端口的(都要使用默认的80端口)blog.test.com 访问 nginx 时跳转到 blog项目 的端口 8081gogs.test.com 访问 nginx 时跳转到 gogs项目 的端口 8082二、配置在 server 中配置即可server{ listen 80; server_name blog.test.com; l.原创 2022-02-01 18:35:49 · 6796 阅读 · 1 评论 -
Gogs 阿里云二级域名解析+Nginx 反向代理
一、说明二、nginx.conf 文件配置三、修改配置之后重启gogs服务一、说明我们不希望通过 IP:端口号 的方式访问gogs项目,希望通过 域名 直接访问。阿里云域名解析二、nginx.conf 文件配置查找 nginx 文件位置:find / -name nginx.conf,语法: find 路径名 -name 文件名文件配置如下server { listen 80; server_name gogs.***.com; location / { .原创 2022-01-02 12:12:42 · 1933 阅读 · 0 评论 -
Linux下使用源码包安装禅道
一、前言二、下载三、安装1、把文件放到Linux服务器上并解压2、在 nginx.conf 文件中配置项目 zentaopms3、重启 nginx四、项目启动五、总结一、前言大家可以根据禅道官网的说明去安装:禅道 - 使用源码包安装(各系统通用)说明二、下载直接去禅道官网找安装包下载,我这里用安装包,不用 Linux 一键安装包禅道官网下载源码包,选择一个版本,比如 5.3.1我是 php7.0,所以下载 php7.0 的版本三、安装1、把文件放到Linux服务器上.原创 2021-11-18 15:54:18 · 2259 阅读 · 0 评论 -
Linux下 PHP 安装ioncube扩展
一、前言二、需知三、部署 ioncube 步骤1、查看Linux中php版本2、下载 loader-wizard.php3、把文件放到Linux服务器上并解压4、在 nginx.conf 文件中配置项目 ioncube5、重启 nginx四、使用 ioncube 步骤1、访问项目,项目首页如下2、按照 Installation里的步骤一步步执行3、加载成功的页面五、相关地址一、前言安装禅道进行到 设置账号 这一步,点击 保存,没反应,F12 提示该问题。出现该问题的原因是:禅道专业版本的核心代码都是.原创 2021-11-18 13:45:08 · 2968 阅读 · 0 评论 -
如何验证 nginx.conf 是否配置正确
一、前言二、内容1、问题2、分析3、解决一、前言我们配置了nginx.conf文件之后,重启 nginx:systemctl restart nginx时,可能会报错,但是错误我们又看不懂,很尴尬。不急,本文就是解决这个问题的。二、内容1、问题service nginx restart 重启失败,提示如下:2、分析可能是配置文件格式出错了: nginx -t 命令(验证nginx配置文件是否正确)查看,如下3、解决1、原来是 14行的 server 写成了 serve.原创 2021-11-18 11:36:37 · 11222 阅读 · 0 评论 -
nginx.conf 配置完整示例
1、地址2、配置1、地址Example nginx configuration2、配置user www www;worker_processes 2;pid /var/run/nginx.pid;# [ debug | info | notice | warn | error | crit ]error_log /var/log/nginx.error_log info;events { worker_con.原创 2020-10-28 16:24:54 · 906 阅读 · 1 评论 -
Windows下phpstudy nginx.conf 配置PHP项目
一、配置文件位置二、host文件配置三、nginx.conf配置四、本地访问地址一、配置文件位置F:\phpstudy\PHPTutorial\nginx\conf\nginx.con二、host文件配置文件位置:C:\Windows\System32\drivers\etc\hosts文件配置:192.168.1.1 local.test.com三、nginx.conf配置worker_processes 1;events { worker_connections.原创 2020-10-27 16:35:57 · 1605 阅读 · 2 评论 -
nginx access日志log_format优化之request_time 和upstream_response_time差别
1、request_time2、upstream_response_time3、比较4、结论1、request_time官网描述:request processing time in seconds with a milliseconds resolution; time elapsed between the first bytes were read from the client and the log write after the last bytes were sent to the c.转载 2020-10-17 18:02:41 · 1176 阅读 · 2 评论 -
nginx 使用自定义 log_format 以及输出自定义http头
官方文档地址一、log_format默认格式二、自定义多个log_format三、给web网站分配log_format四、access_log里打印自定义的消息header头官方文档地址http://nginx.org/en/docs/http/ngx_http_log_module.html一、log_format默认格式首先Nginx默认的log_format的格式为:log_format main '$remote_addr - $remote_user [$time_local].转载 2020-10-17 16:52:50 · 1981 阅读 · 0 评论 -
logstash nginx error access 日志处理
logstash 配置文件nginx access 日志格式nginx access 拆分效果nginx error 日志格式:nginx error 拆分效果:logstash 配置文件input { file { type => "nginx-access" path => [ "/home/jiankunking/software/testdata/nginx/access.log" ] tags => [ "nginx","access"].转载 2020-10-17 14:30:06 · 668 阅读 · 0 评论