- Joined
- Jan 30, 2021
- Messages
- 28
- Reaction score
- 13
We have an on-prem 3CX (debian) V20 Update9 installation that I need to disable the nginx headers to pass PCI compliance scans. I found some information online to add "server_tokens off" to the ngnix.conf file, but when I go into that file, it's already there. I'll paste in a snip from that section of the ngnix.conf file so you can see. Perhaps that's not the right place for it, but like I said, it was already there. If anyone has any suggestions on what to do now, I would greatly appreciate it.
server {
listen 5001 ssl http2;
listen [::]:5001 ssl http2;
listen 5000;
listen [::]:5000;
server_name xxxx.xxxx.com;
server_tokens off;
server {
listen 5001 ssl http2;
listen [::]:5001 ssl http2;
listen 5000;
listen [::]:5000;
server_name xxxx.xxxx.com;
server_tokens off;