nginx启动错误!

发布于 2022-10-15 08:03:42 字数 1990 浏览 22 评论 0

问题描述:
[root@localhost sbin]# ./nginx
[emerg]: the using of the regex "\.php$" requires PCRE library in /usr/local/nginx//conf/nginx.conf:65

配置文件:

  1. server
  2.   {
  3.     listen       80;
  4.     server_name 1.hg.com ;
  5.     index index.html index.htm index.php;
  6.     root  /data0/htdocs/blog;
  7.     #limit_conn   crawler  20;
  8.    location ~ \.php$
  9.     {
  10.       #fastcgi_pass  unix:/tmp/php-cgi.sock;
  11.       fastcgi_pass  127.0.0.1:9000;
  12.       fastcgi_index index.php;
  13.       include fcgi.conf;
  14.     }
  15.     location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  16.     {
  17.       expires      30d;
  18.     }
  19.     location ~ .*\.(js|css)?$
  20.     {
  21.       expires      1h;
  22.     }
  23.     log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
  24.               '$status $body_bytes_sent "$http_referer" '
  25.               '"$http_user_agent" $http_x_forwarded_for';
  26.     access_log  /data1/logs/access.log  access;
  27.       }

复制代码pcre已经YUM安装过:
[root@localhost sbin]# rpm -qa | grep pcre
pcre-6.6-6.el5_6.1
pcre-devel-6.6-6.el5_6.1

请教下大家这个问题,谢谢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文