私は自分のウェブサイトで以下のオプションを解決しようとしています
Strict-Transport-Security
Content-Security-Policy
X-Frame-Options
X-Content-Type-Options
Referrer-Policy
Permissions-Policy
Googleで以下のコードを見つけ、/etc/apache2/apache2.conf
ファイルに同じものを追加しました
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
Order Allow,Deny
Allow from all
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials true
Header set Access-Control-Allow-Methods "POST, GET, OPTIONS, DELETE, PUT"
Header set Access-Control-Max-Age "1000"
Header set Access-Control-Allow-Headers "x-requested-with, Content-Type, origin, authorization, accept, client-security-token"
</Directory>
上記のコードを追加した後、以下のエラーが発生します
sudo service apache2 restart
Job for apache2.service failed because the control process exited with error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
この URL で自分の Web サイトをスキャンしました:https://securityheaders.com/結果がFと表示されます。結果のリンクはこちらです
これらの問題を解決する必要があるため、Google で調べて、Apache 構成ファイルに追加するヘッダー コードを見つけました。同じコードを追加したところ、エラーが発生しました...