HEX
Server: Apache
System: Linux b87bae7b6fa1 6.14.0-1013-aws #13~24.04.1-Ubuntu SMP Tue Sep 2 23:08:25 UTC 2025 x86_64
User: daemon (1)
PHP: 8.2.20
Disabled: NONE
Upload Files
File: /opt/bitnami/scripts/wordpress/bitnami-templates/nginx-wordpress-basic.conf.tpl
# BEGIN WordPress
# https://wordpress.org/support/article/nginx/#general-wordpress-rules
location = /favicon.ico {
    log_not_found off;
    access_log off;
}
location = /robots.txt {
    allow all;
    log_not_found off;
    access_log off;
}
location / {
    try_files $uri $uri/ /index.php?$args;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
    expires max;
    log_not_found off;
}
# END WordPress