ifox
10/13/2022, 6:59 PMifox
10/13/2022, 6:59 PMifox
10/13/2022, 6:59 PMasolopovas
10/13/2022, 6:59 PMasolopovas
10/13/2022, 7:00 PMifox
10/13/2022, 7:02 PMifox
10/13/2022, 7:03 PMasolopovas
10/13/2022, 7:03 PMifox
10/13/2022, 7:03 PMasolopovas
10/13/2022, 7:03 PMifox
10/13/2022, 7:03 PMasolopovas
10/13/2022, 7:05 PMifox
10/13/2022, 7:07 PMifox
10/13/2022, 7:09 PMifox
10/13/2022, 7:11 PMifox
10/13/2022, 7:13 PMifox
10/13/2022, 7:14 PMasolopovas
10/13/2022, 8:12 PMasolopovas
10/13/2022, 8:18 PMfastcgi_cache_path /tmp/nginx/cache levels=1:2 keys_zone=BACKEND:100m inactive=60m;
fastcgi_cache_key "$scheme$request_method$host$request_uri";
server {
listen 443 ssl http2;
server_name ${URL};
root /var/www/backend/public;
index index.php;
ssl_certificate ${SSL_CERTIFICATE};
ssl_certificate_key ${SSL_CERTIFICATE_KEY};
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location /favicon.ico { access_log off; log_not_found off; }
location /robots.txt { access_log off; log_not_found off; }
location ~ \.php$ {
fastcgi_pass ${CONTAINER}:9000;
try_files $fastcgi_script_name =404;
fastcgi_index index.php;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_read_timeout 600;
fastcgi_cache BACKEND;
fastcgi_cache_valid 200 1m;
fastcgi_cache_bypass $no_cache;
fastcgi_no_cache $no_cache;
fastcgi_cache_use_stale error updating timeout invalid_header http_500;
fastcgi_cache_lock on;
fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
error_page 404 /index.php;
#Cache everything by default
set $no_cache 0;
#Don't cache POST requests
if ($request_method = POST)
{
set $no_cache 1;
}
}
ifox
10/13/2022, 9:46 PMHip-Hop
10/14/2022, 3:29 AMnuffsaid
10/14/2022, 6:51 AMtitle
attribute is not unique like this (see screenshot).
In this case there are several entitites associated within the browser. Can I override what fields / presenter methods / accessors are displayed here in order to have unique / meaningful browser entries? Thanks a lot for any ideas 🙂ifox
10/14/2022, 8:26 AMgetTitleInBrowserAttribute
in your model for thisnuffsaid
10/14/2022, 8:27 AMHip-Hop
10/14/2022, 10:15 AMHarings Rob
10/14/2022, 10:19 AMtud13
10/14/2022, 10:25 AMifox
10/14/2022, 10:38 AMBijen
10/17/2022, 3:08 PMHarings Rob
10/17/2022, 3:37 PM