themsaid/wink

The screen displays nothing after logging in

thuanpt opened this issue · 1 comments

After logging in, only the white screen will appear. I do not know why.

image

Video: https://www.loom.com/share/69276aa1a8614c9da46c381671d56fea

My problem was solved when I commnet this segment in nginx configuration file.

add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-XSS-Protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer-when-downgrade" always;
add_header Content-Security-Policy "default-src 'self' http: https: data: blob: 'unsafe-inline'" always;
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;

location ~ /.(?!well-known) {
deny all;
}