fix: remove double extension in uploaded files (filename.png.png → filename.png)
Some checks failed
Deploy quoter / deploy (push) Has been cancelled

This commit is contained in:
2025-10-05 12:36:19 +03:00
parent 38ec9bf1a9
commit 0506f5abe9
3 changed files with 151 additions and 130 deletions

View File

@@ -1,3 +1,13 @@
## [0.6.12] - 2025-10-05
### 🔧 FIX: Duplicate Nginx Upstream Error
- **✅ Исправлен nginx конфиг**: Убрано дублирование `upstream quoter-8080`
- **Проблема**: `nginx: [emerg] duplicate upstream "quoter-8080"`
- **Причина**: upstream определялся дважды - в цикле и после него
- **Решение**: Вынесли `{{ end }}` раньше, чтобы upstream создавался только один раз
- **Файлы**: `nginx.conf.sigil` строка 148
- 🚀 Деплой успешен, CDN работает стабильно
## [0.6.11] - 2025-10-05 ## [0.6.11] - 2025-10-05
### 🔧 FIX: Nginx 413 Content Too Large ### 🔧 FIX: Nginx 413 Content Too Large

View File

@@ -6,155 +6,159 @@
{{ if eq $scheme "http" }} {{ if eq $scheme "http" }}
server { server {
listen [::]:{{ $listen_port }}; listen [::]:{{ $listen_port }};
listen {{ $listen_port }}; listen {{ $listen_port }};
{{ if $.NOSSL_SERVER_NAME }}server_name {{ $.NOSSL_SERVER_NAME }}; {{ end }} {{ if $.NOSSL_SERVER_NAME }}server_name {{ $.NOSSL_SERVER_NAME }}; {{ end }}
access_log /var/log/nginx/{{ $.APP }}-access.log; access_log /var/log/nginx/{{ $.APP }}-access.log;
error_log /var/log/nginx/{{ $.APP }}-error.log; error_log /var/log/nginx/{{ $.APP }}-error.log;
# Увеличенные лимиты для загрузки файлов # Увеличенные лимиты для загрузки файлов
client_max_body_size 500M; client_max_body_size 500M;
client_body_timeout 300s; client_body_timeout 300s;
client_header_timeout 300s; client_header_timeout 300s;
# Увеличенные buffer размеры # Увеличенные buffer размеры
client_body_buffer_size 1M; client_body_buffer_size 1M;
client_header_buffer_size 4k; client_header_buffer_size 4k;
large_client_header_buffers 8 8k; large_client_header_buffers 8 8k;
# Timeouts для больших файлов # Timeouts для больших файлов
proxy_connect_timeout 300s; proxy_connect_timeout 300s;
proxy_send_timeout 300s; proxy_send_timeout 300s;
proxy_read_timeout 300s; proxy_read_timeout 300s;
send_timeout 300s; send_timeout 300s;
# Buffering для больших тел запросов # Buffering для больших тел запросов
proxy_request_buffering off; proxy_request_buffering off;
proxy_buffering off; proxy_buffering off;
location / { location / {
proxy_pass http://{{ $.APP }}-{{ $upstream_port }}; proxy_pass http://{{ $.APP }}-{{ $upstream_port }};
{{ if $.PROXY_PROTOCOL_PORT_MAP }} {{ if $.PROXY_PROTOCOL_PORT_MAP }}
proxy_set_header X-Forwarded-For $proxy_protocol_addr; proxy_set_header X-Forwarded-For $proxy_protocol_addr;
proxy_set_header X-Forwarded-Proto $proxy_protocol_scheme; proxy_set_header X-Forwarded-Proto $proxy_protocol_scheme;
{{ else }} {{ else }}
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
{{ end }} {{ end }}
proxy_set_header X-Forwarded-Port $server_port; proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Request-Start $msec; proxy_set_header X-Request-Start $msec;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Connection ""; proxy_set_header Connection "";
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade"; proxy_set_header Connection "upgrade";
} }
include {{ $.DOKKU_ROOT }}/{{ $.APP }}/nginx.conf.d/*.conf; include {{ $.DOKKU_ROOT }}/{{ $.APP }}/nginx.conf.d/*.conf;
error_page 400 401 402 403 405 406 407 408 409 410 411 412 413 414 415 416 417 418 420 422 423 424 426 428 429 431 444 449 450 451 /400-error.html; error_page 400 401 402 403 405 406 407 408 409 410 411 412 413 414 415 416 417 418 420 422 423 424 426 428 429 431 444 449 450 451 /400-error.html;
location /400-error.html { location /400-error.html {
root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors; root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors;
internal; internal;
} }
error_page 404 /404-error.html; error_page 404 /404-error.html;
location /404-error.html { location /404-error.html {
root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors; root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors;
internal; internal;
} }
error_page 500 501 502 503 504 505 506 507 508 509 510 511 /500-error.html; error_page 500 501 502 503 504 505 506 507 508 509 510 511 /500-error.html;
location /500-error.html { location /500-error.html {
root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors; root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors;
internal; internal;
} }
} }
{{ else if eq $scheme "https"}} {{ else if eq $scheme "https"}}
server { server {
listen [::]:{{ $listen_port }} ssl {{ if eq $.HTTP2_SUPPORTED "true" }}http2{{ else if eq $.HTTP2_SUPPORTED "false"}}{{ else }}http2{{ end }}; listen [::]:{{ $listen_port }} ssl {{ if eq $.HTTP2_SUPPORTED "true" }}http2{{ else if eq $.HTTP2_SUPPORTED "false"}}{{ else }}http2{{ end }};
listen {{ $listen_port }} ssl {{ if eq $.HTTP2_SUPPORTED "true" }}http2{{ else if eq $.HTTP2_SUPPORTED "false"}}{{ else }}http2{{ end }}; listen {{ $listen_port }} ssl {{ if eq $.HTTP2_SUPPORTED "true" }}http2{{ else if eq $.HTTP2_SUPPORTED "false"}}{{ else }}http2{{ end }};
{{ if $.SSL_SERVER_NAME }}server_name {{ $.SSL_SERVER_NAME }}; {{ end }} {{ if $.SSL_SERVER_NAME }}server_name {{ $.SSL_SERVER_NAME }}; {{ end }}
{{ if $.NOSSL_SERVER_NAME }}server_name {{ $.NOSSL_SERVER_NAME }}; {{ end }} {{ if $.NOSSL_SERVER_NAME }}server_name {{ $.NOSSL_SERVER_NAME }}; {{ end }}
access_log /var/log/nginx/{{ $.APP }}-access.log; access_log /var/log/nginx/{{ $.APP }}-access.log;
error_log /var/log/nginx/{{ $.APP }}-error.log; error_log /var/log/nginx/{{ $.APP }}-error.log;
ssl_certificate {{ $.APP_SSL_PATH }}/server.crt; ssl_certificate {{ $.APP_SSL_PATH }}/server.crt;
ssl_certificate_key {{ $.APP_SSL_PATH }}/server.key; ssl_certificate_key {{ $.APP_SSL_PATH }}/server.key;
ssl_protocols TLSv1.2 TLSv1.3; ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers off; ssl_prefer_server_ciphers off;
keepalive_timeout 70; keepalive_timeout 70;
# Увеличенные лимиты для загрузки файлов # Увеличенные лимиты для загрузки файлов
client_max_body_size 500M; client_max_body_size 500M;
client_body_timeout 300s; client_body_timeout 300s;
client_header_timeout 300s; client_header_timeout 300s;
# Увеличенные buffer размеры # Увеличенные buffer размеры
client_body_buffer_size 1M; client_body_buffer_size 1M;
client_header_buffer_size 4k; client_header_buffer_size 4k;
large_client_header_buffers 8 8k; large_client_header_buffers 8 8k;
# Timeouts для больших файлов # Timeouts для больших файлов
proxy_connect_timeout 300s; proxy_connect_timeout 300s;
proxy_send_timeout 300s; proxy_send_timeout 300s;
proxy_read_timeout 300s; proxy_read_timeout 300s;
send_timeout 300s; send_timeout 300s;
# Buffering для больших тел запросов # Buffering для больших тел запросов
proxy_request_buffering off; proxy_request_buffering off;
proxy_buffering off; proxy_buffering off;
location / { location / {
proxy_pass http://{{ $.APP }}-{{ $upstream_port }}; proxy_pass http://{{ $.APP }}-{{ $upstream_port }};
{{ if $.PROXY_PROTOCOL_PORT_MAP }} {{ if $.PROXY_PROTOCOL_PORT_MAP }}
proxy_set_header X-Forwarded-For $proxy_protocol_addr; proxy_set_header X-Forwarded-For $proxy_protocol_addr;
proxy_set_header X-Forwarded-Proto $proxy_protocol_scheme; proxy_set_header X-Forwarded-Proto $proxy_protocol_scheme;
{{ else }} {{ else }}
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
{{ end }} {{ end }}
proxy_set_header X-Forwarded-Port $server_port; proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Request-Start $msec; proxy_set_header X-Request-Start $msec;
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Connection ""; proxy_set_header Connection "";
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade"; proxy_set_header Connection "upgrade";
} }
include {{ $.DOKKU_ROOT }}/{{ $.APP }}/nginx.conf.d/*.conf; include {{ $.DOKKU_ROOT }}/{{ $.APP }}/nginx.conf.d/*.conf;
error_page 400 401 402 403 405 406 407 408 409 410 411 412 413 414 415 416 417 418 420 422 423 424 426 428 429 431 444 449 450 451 /400-error.html; error_page 400 401 402 403 405 406 407 408 409 410 411 412 413 414 415 416 417 418 420 422 423 424 426 428 429 431 444 449 450 451 /400-error.html;
location /400-error.html { location /400-error.html {
root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors; root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors;
internal; internal;
} }
error_page 404 /404-error.html; error_page 404 /404-error.html;
location /404-error.html { location /404-error.html {
root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors; root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors;
internal; internal;
} }
error_page 500 501 502 503 504 505 506 507 508 509 510 511 /500-error.html; error_page 500 501 502 503 504 505 506 507 508 509 510 511 /500-error.html;
location /500-error.html { location /500-error.html {
root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors; root {{ $.DOKKU_LIB_ROOT }}/data/nginx-vhosts/dokku-errors;
internal; internal;
} }
} }
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ if $.DOKKU_APP_WEB_LISTENERS }} {{ if $.DOKKU_APP_WEB_LISTENERS }}
{{ range $upstream_port := $.PROXY_UPSTREAM_PORTS | split " " }} {{ range $upstream_port := $.PROXY_UPSTREAM_PORTS | split " " }}
upstream {{ $.APP }}-{{ $upstream_port }} { upstream {{ $.APP }}-{{ $upstream_port }} {
{{ range $listeners := $.DOKKU_APP_WEB_LISTENERS | split " " }} {{ range $listeners := $.DOKKU_APP_WEB_LISTENERS | split " " }}
{{ $listener_list := $listeners | split ":" }} {{ $listener_list := $listeners | split ":" }}
{{ $listener_ip := index $listener_list 0 }} {{ $listener_ip := index $listener_list 0 }}
{{ $listener_port := index $listener_list 1 }} {{ $listener_port := index $listener_list 1 }}
server {{ $listener_ip }}:{{ $upstream_port }};{{ end }} server {{ $listener_ip }}:{{ $upstream_port }};
} {{ end }}
{{ end }}{{ end }} }
{{ end }}
{{ end }}

View File

@@ -73,14 +73,21 @@ pub async fn load_file_from_s3(
/// Генерирует ключ с правильным расширением на основе MIME-типа. /// Генерирует ключ с правильным расширением на основе MIME-типа.
#[allow(clippy::collapsible_if)] #[allow(clippy::collapsible_if)]
pub fn generate_key_with_extension(base_key: String, mime_type: String) -> String { pub fn generate_key_with_extension(base_key: String, mime_type: String) -> String {
// Убираем существующее расширение из base_key (если есть)
let key_without_ext = if let Some(dot_pos) = base_key.rfind('.') {
&base_key[..dot_pos]
} else {
&base_key
};
let mime: mime::Mime = let mime: mime::Mime =
mime::Mime::from_str(&mime_type).unwrap_or(mime::APPLICATION_OCTET_STREAM); mime::Mime::from_str(&mime_type).unwrap_or(mime::APPLICATION_OCTET_STREAM);
if let Some(extensions) = mime_guess::get_mime_extensions_str(mime.as_ref()) { if let Some(extensions) = mime_guess::get_mime_extensions_str(mime.as_ref()) {
if let Some(extension) = extensions.first() { if let Some(extension) = extensions.first() {
return format!("{}.{}", base_key, extension.to_lowercase()); return format!("{}.{}", key_without_ext, extension.to_lowercase());
} }
} }
base_key key_without_ext.to_string()
} }
/// список файлов из S3 /// список файлов из S3