4

ワイヤード URL 書き換えの問題

私が行く間

http://git.example.org/foo

正常に動作し、リポジトリが表示されます。ただし、そのページのリンクには /foo が再度追加されています。

http://git.example.org/foo/foo/commit

のようなURLに移動すると

http://git.example.org/foo/commit?id=123123

動作しますが、そのページの各リンクは次のようになります

http://git.example.org/foo/commit/foo/snapshot/foo/4f0be51d35fe3160a9122894723b69df69a6fb7e.zip?id=4f0be51d35fe3160a9122894723b69df69a6fb7e

これが私の nginx.conf です。

server {
    listen 80;
    server_name git.example.org;
    root /var/www/htdocs/cgit;
    index cgit.cgi;

    location ~* ^.+\.(css|png|ico)$ {
        expires 30d;
    }

    if ($request_filename = cgit.cgi){
        rewrite ^/([^/]+/.*)$ /cgit.cgi?url=$1 last;
    }

    location / {
        try_files $uri @cgit;
    }

    location @cgit {
        fastcgi_pass unix:/var/run/fcgiwrap.socket;
        fastcgi_param SCRIPT_FILENAME $document_root/cgit.cgi;
        fastcgi_param HTTP_HOST $server_name;
        fastcgi_param PATH_INFO $uri;
        include fastcgi_params;

    }
    access_log /var/log/nginx/cgit_access.log;
    error_log /var/log/nginx/cgit_error.log warn;
}

更新、解決済み

これは virtual-root=/ の cgit 設定です。そして、nginx.conf も更新しました。URL の書き換えが機能するようになりました!!

server {
        listen 80;
        server_name git.mengzhuo.org;
        root /var/www/htdocs/cgit;

        location ~* ^.+\.(css|png|ico)$ {
                expires 30d;
        }


        location / {
                index cgit.cgi;
                fastcgi_param SCRIPT_FILENAME $document_root/cgit.cgi;
                fastcgi_pass unix:/var/run/fcgiwrap.socket;
                fastcgi_param HTTP_HOST $server_name;
                fastcgi_param PATH_INFO $uri;
                fastcgi_param QUERY_INFO $uri;
                include "fastcgi_params";

        }
        access_log /var/log/nginx/cgit_access.log;
        error_log /var/log/nginx/cgit_error.log warn;
}
4

2 に答える 2

0

これは Nginx とは関係ありません。URL を生成するコードにバグがあります。

ページhttp://git.example.org/fooには、次のように記述されたリンクがあります。

<a href="foo/commit">Click to commit</a>

次のように、サーバーに対して絶対である必要があります。

<a href="/foo/commit">Click to commit</a>

または、現在のディレクトリに対して次のように相対的です。

<a href="commit">Click to commit</a>

おそらく、cgit を init するコードのどこかで、foo渡すべき場所にパスしているはずです/foo

于 2013-04-25T14:59:15.637 に答える