hdrdevs / cedro

Javascript library to build user interfece based on widgets.
MIT License
1 stars 0 forks source link

FIREFOX - DEPENCENCIAS CRUZADAS #28

Closed hdrdevs closed 2 months ago

hdrdevs commented 2 months ago

Al poner en produccion en un servidor nginx en firefox da error de dependencias cruzadas.

hdrdevs commented 2 months ago

Se soluciona a traves archivo de configuracion del sitio web:

server { listen 80; server_name mi-url.com; index index.php index.html index.htm default.php default.htm default.html; root /www/wwwroot/my-site-directory;

#SSL-START SSL related configuration, do NOT delete or modify the next line of commented-out 404 rules
#error_page 404/404.html;
#SSL-END

#ERROR-PAGE-START  Error page configuration, allowed to be commented, deleted or modified
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END

#PHP-INFO-START  PHP reference configuration, allowed to be commented, deleted or modified
include enable-php-00.conf;
#PHP-INFO-END

#REWRITE-START URL rewrite rule reference, any modification will invalidate the rewrite rules set by the panel
include /www/server/panel/vhost/rewrite/mi-url.com.conf;
#REWRITE-END

location / {
    try_files $uri /index.html;
    add_header 'Access-Control-Allow-Origin' '*';
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
    add_header 'Access-Control-Allow-Headers' 'Origin, Authorization, Accept, Content-Type';
}

# Forbidden files or directories
location ~ ^/(\.user.ini|\.htaccess|\.git|\.env|\.svn|\.project|LICENSE|README.md) {
    return 404;
}

# Directory verification related settings for one-click application for SSL certificate
location ~ \.well-known {
    allow all;
}

# Prohibit putting sensitive files in certificate verification directory
if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
    return 403;
}

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
    expires      30d;
    error_log /dev/null;
    access_log off;
}

location ~ .*\.(js|css)?$ {
    expires      12h;
    add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
    error_log /dev/null;
    access_log off; 
}

access_log  /www/wwwlogs/my-site-directory.log;
error_log  /www/wwwlogs/my-site-directory.error.log;

}