找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
楼主: mojave

nginx静态规则这样添加为何不行,该如何改

[复制链接]

76

主题

1086

回帖

2428

积分

金牌会员

积分
2428
 楼主| 发表于 2009-10-12 23:14:12 | 显示全部楼层


贴了
回复

使用道具 举报

1521

主题

3万

回帖

8万

积分

管理员

积分
81523
发表于 2009-10-12 23:24:22 | 显示全部楼层
第二段server缺了好多东西,你要把www.moltown.com绑定在哪个目录都没有设置,你是要绑定到bbs目录的话,我给你写下,

把你上面的第二个server段替换成

server
        {
                listen       80;
                server_name www.moltown.com;
                index index.html index.htm index.php;
                root  /home/www/bbs;

                #limit_conn   crawler  20;

                #location /status {
                #stub_status        on;
                #access_log        off;
                #}

location / {
            rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
            rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
            rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
            rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
            rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
            break;
        }

                location ~ .*\.(php|php5)?$
                        {
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                #fastcgi_pass  127.0.0.1:9000;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                                expires      12h;
                        }

                log_format  access2  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log  /home/logs/access.log  access;
        }

这样就OK了

回复

使用道具 举报

108

主题

4571

回帖

9502

积分

论坛元老

积分
9502
发表于 2009-10-12 23:28:18 | 显示全部楼层
第二段 的 # 号 错了 你用成 全拼了 应该是 #
其他的 我正在 看
回复

使用道具 举报

108

主题

4571

回帖

9502

积分

论坛元老

积分
9502
发表于 2009-10-12 23:29:24 | 显示全部楼层
第二段 缺日志 和 主目录
回复

使用道具 举报

108

主题

4571

回帖

9502

积分

论坛元老

积分
9502
发表于 2009-10-12 23:29:59 | 显示全部楼层
额 C大 比我动作快 嘿嘿
回复

使用道具 举报

76

主题

1086

回帖

2428

积分

金牌会员

积分
2428
 楼主| 发表于 2009-10-12 23:33:26 | 显示全部楼层
[emerg]: unknown log format "access" in /usr/local/nginx/conf/nginx.conf:99
configuration file /usr/local/nginx/conf/nginx.conf test failed
我觉得下面这里没变动
回复

使用道具 举报

108

主题

4571

回帖

9502

积分

论坛元老

积分
9502
发表于 2009-10-12 23:36:15 | 显示全部楼层
你把 你的 两个主目录 和 对应的 两个域名 还有两个日志保存位置 和 文件名 写出来
回复

使用道具 举报

0

主题

2

回帖

6

积分

新手上路

积分
6
发表于 2009-10-12 23:36:56 | 显示全部楼层
/home/www/bbs    moltown.com/bbs
/home/www/my     moltown.com/my
日志是公用的吧/home/logs/access.log你第二段 就是 多了一个 }
回复

使用道具 举报

1521

主题

3万

回帖

8万

积分

管理员

积分
81523
发表于 2009-10-12 23:45:08 | 显示全部楼层
moltown.com/bbs和moltown.com/my可不是域名哦,你只要/home/www/绑定域名moltown.com就行了哈,后面的server段都可以删除掉,第一个server段写成

server
        {
                listen       80;
                server_name www.moltown.com moltown.com;
                index index.html index.htm index.php;
                root  /home/www;

                #limit_conn   crawler  20;

                #location /status {
                #stub_status        on;
                #access_log        off;
                #}

location /bbs {
            rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
            rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
            rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
            rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
            rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
            break;
        }

                location ~ .*\.(php|php5)?$
                        {
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                #fastcgi_pass  127.0.0.1:9000;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                                expires      12h;
                        }

                log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log  /home/logs/access.log  access;
        }

然后后面的server段都可以删除了。
回复

使用道具 举报

108

主题

4571

回帖

9502

积分

论坛元老

积分
9502
发表于 2009-10-12 23:45:50 | 显示全部楼层
原帖由 mojave 于 2009-10-12 23:41 发表


/home/www/bbs    moltown.com/bbs
/home/www/my     moltown.com/my
日志是公用的吧/home/logs/access.log



server 放的是 域名
你要是 要 一个域名 后面 跟 目录的  bbs  和 my 的话 那就只用一个 server端了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Discuz! X

GMT+8, 2025-1-11 15:54 , Processed in 0.018442 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表