vim nginx.conf
user nginx;
worker_processes 1;
events
server_tokens off;
sendfile on;
tcp_nopush on;
keepalive_timeout 65;
add_header x-frame-options "sameorigin";
add_header x-xss-protection "1; mode=block";
add_header x-content-type-options "nosniff";
limit_conn_zone $binary_remote_addr zone=ops:10m;
types_hash_max_size 2048;
server
error_page 500 502 503 504 /50x.html;
location = /50x.html
}
server
if ($http_user_agent ~* lwp::******|bbbike|wget|curl)
location /down
location /
location /admin/
上邊表示只允許192.168.12.0/24網段的主機訪問,拒絕其他所有
location /ops-coffee/
set $allow false;
建立賬號方法:
mkdir -p /opt/test/passtd
printf "ttlsa:$(openssl passwd -crypt 123456)\n" >> /opt/test/passtd/pass
cat /opt/test/passtd/pass
ttlsa:4wdzxpymm4tga
#說明:在登入nginx時,就需要輸入賬號和密碼,輸入檔案中的賬號和密碼即可}} nginx安全配置
摘要 安全是乙個重要的問題,必須引起注意。1.nginx介紹 nginx本身不能處理php,它只是個web伺服器,當接收到請求後,如果是php請求,則發給php直譯器處理,並把結果返回給客戶端。nginx一般是把請求發fastcgi管理程序處理,fastcgi管.安全是乙個重要的問題,必須引起注意。...
nginx安全配置
安全是乙個重要的問題,必須引起注意。nginx本身不能處理php,它只是個web伺服器,當接收到請求後,如果是php請求,則發給php直譯器處理,並把結果返回給客戶端。nginx一般是把請求發fastcgi管理程序處理,fastcgi管理程序選擇cgi子程序處理結果並返回被nginx。nginx涉及...
nginx安全配置
安全是乙個重要的問題,必須引起注意。nginx本身不能處理php,它只是個web伺服器,當接收到請求後,如果是php請求,則發給php直譯器處理,並把結果返回給客戶端。nginx一般是把請求發fastcgi管理程序處理,fastcgi管理程序選擇cgi子程序處理結果並返回被nginx。nginx涉及...