nginx:上传进度和重写条款

nginx:上传进度和重写条款

我使用带有上传进度扩展和一些重写子句的 nginx。只要我的上传表单上传到 php 文件 ( <form action="myphpfile.php" ... >),一切就都正常。但是当我在操作参数 ( ) 中使用 html 文件时,<form action="myhtmlfile.htm" ...>我只能通过请求上传状态获得“({status: Starting})”。但是... 使用 nginx-conf 中的以下位置部分,我的所有页面都从 htm 重写为 php:

location ~ \.(php|htm)$ {

    rewrite ^/([a-zA-Z0-9]+).htm$ /index.php?page=$1 last;

    client_max_body_size 0;

    include /etc/nginx/fastcgi_params;

    track_uploads uploads 30s;

}

我的位置或重写子句有什么问题吗?但是……这些组合适用于其他任何东西,因此我目前有点困惑为什么我只能通过在表单的操作参数中使用 php 文件来获得正确的状态。

编辑:我的完整配置如下:

user  nginx;
worker_processes  1;

error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    log_format main '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    keepalive_timeout  65;

    upload_progress uploads 1m;

    server {

        listen       80;
        server_name  localhost;
        server_name_in_redirect off;

        client_header_timeout 800;
        client_body_timeout 800;

        location ~* ^.+.(css|js|ico|txt|png|jpg)$ {
            access_log off;
            expires 30d;
            root /var/www;
        }

        location ~ \.(php|htm)$ {

            rewrite ^/([a-zA-Z0-9]+).htm$ /index.php?page=$1 last;

            client_max_body_size 0;

            include /etc/nginx/fastcgi_params;

            track_uploads uploads 30s;

        }

        location = /progress.htm {
            report_uploads uploads;
        }

        location ~ /([a-zA-Z0-9]+) {
            include /etc/nginx/fastcgi_params;
        }

        location / {
            rewrite ^ /index.htm permanent;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root /usr/share/nginx/html;
        }

        location ~ /\.ht {
            deny all;
        }

    }

}

答案1

您的逻辑基础是错误的。Nginx 每次请求只能使用一个位置,您无法定义一个位置,在那里配置某些内容,然后重写请求。当您这样做时,Nginx 将忽略该位置中的所有内容,仅使用您重写到的位置。

您需要将 track_uploads 指令与 fastcgi_pass 放在同一位置,否则 Nginx 会认为您正在尝试 POST 到静态位置。

如果您需要进一步的帮助,请发布您的整个服务器块。

相关内容