Sunt complet pierdut. Am un site care are un subdirector numit „active” care listează fișierele adăugate în 2019 și mai devreme, dar nu va enumera fișierele create în 2022 (nu știu de ce nu au folosit acest lucru de trei ani).
Versiunea serverului: Apache/2.4.6 (CentOS)
Server construit: 10 noiembrie 2021 14:26:31
Acesta este fișierul de configurare care permite vizualizarea a 10 din 13 fișiere.
<VirtualHost *:80>
ServerName example.com
ServerAlias example.com
Redirect / https://example.com/
ErrorLog logs/error.log
TransferLog logs/access.log
</VirtualHost>
<VirtualHost *:443>
ServerAdmin [email protected]
ServerName example.com
ErrorLog logs/error.log
TransferLog logs/access.log
CustomLog logs/request.log \
"%t %T %D %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b %s"
LogLevel warn
#EU CONFS
#RewriteEngine On
#RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
SSLEngine on
SSLProxyEngine on
<Directory "/var/www/html/example.com">
AllowOverride FileInfo Options
Order allow,deny
Allow from all
</Directory>
DocumentRoot /var/www/html/example.com
ErrorDocument 404 https://example.com/notfound.html
ErrorDocument 500 https://example.com/internal_error.html
ProxyPass /imgui/cpgimages/ !
ProxyPass /imgui ajp://proxy1
ProxyPass /ui http://proxy2
</VirtualHost>
Am încercat să adaug în mod explicit un director pentru active, dar nu a ajutat.
<Directory "/var/www/html/example.com/assets">
Options +Indexes +FollowSymLinks
IndexOptions +ShowForbidden
Require all granted
</Directory>
Ce îmi lipsește?
EDIT: Am verificat proprietatea/modul, totul bine. SELinux este permisiv, dar chiar dacă nu ar fi, contextele sunt corecte. nici mod_cache nu este în uz.