У меня есть приложение Angular и я хочу защитить определенный путь с помощью базовой аутентификации HTTP. Пути к приложениям имеют вид mysite.com.br/#/example-path.

Файл конфигурации nginx для этого сайта:

server {
listen 80;
server_name mysite.com.br;
root /var/www/angular-app/dist/;

index index.php index.html;

#charset utf-8;

#include /etc/nginx/snippets/letsencrypt-acme-challenge.conf;

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; }

# Media: images, icons, video, audio, HTC
location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ {
  expires 7d;
  access_log off;
  add_header Cache-Control "public";
}

location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php7.1-fpm.sock;
}

location ~ /\.ht {
    deny all;
}

location /#/path-to-protect {
    auth_basic           "Restricted Area";
    auth_basic_user_file conf/.htpasswd;
}}

Я думаю, что проблема с символом «#», но не знаю, как ее решить.

0