Nginx Configuration for HTTP to HTTPS Forwarding

Nginx Configuration for HTTP to HTTPS Forwarding

1. You need to rewrite the 80 port to 443. server { listen 80; server_name oa.dalu.com; rewrite ^(.*)$ https://${server_name}$1 permanent; } server { listen 443; #server_name default; server_name oa.dalu.com; root /data/web/; 2. Whitelist configuration for Nginx domain access server { listen 80; server_name www.test.com; root /var/www/html/test; access_log /var/www/logs/access.log main; error_log /var/www/logs/error.log; ## Whitelist settings, only … Read more

Testing and Analysis Report of Whitelist Products for Industrial Control Systems

Testing and Analysis Report of Whitelist Products for Industrial Control Systems

Author | National Internet Emergency Center, Du Peng 1. Background and Current Situation As the degree of digitization and intelligence of industrial control systems continues to improve, the traditional closed and isolated industrial environment is being broken, and the network security risks it faces are becoming increasingly severe. On one hand, viruses in the traditional … Read more