nginx 의 최적화 보강
기능 이 비교적 잡다 하고 도 난 방지 체인, 주입 방지 등
- location = /robots.txt { access_log off; log_not_found off; }
- location = /favicon.ico { access_log off; log_not_found off; }
- location ~ /\. { access_log off; log_not_found off; deny all; }
- location ~ ~$ { access_log off; log_not_found off; deny all; }
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; }
- location ~ .*\.(js|css)?$ { expires 12h; }
-
-
- location ~* \.(gif|jpg|png|swf|flv)$
- if ($host !=’*.yourdomain.com’) {
- return 403;
- }
-
-
- ## Block SQL injections
- set $block_sql_injections 0;
- if ($query_string ~ "union.*select.*\(") {
- set $block_sql_injections 1;
- }
- if ($query_string ~ "union.*all.*select.*") {
- set $block_sql_injections 1;
- }
- if ($query_string ~ "concat.*\(") {
- set $block_sql_injections 1;
- }
- if ($block_sql_injections = 1) {
- return 403;
- }
-
- ## Block file injections
- set $block_file_injections 0;
- if ($query_string ~ "[a-zA-Z0-9_]=http://") {
- set $block_file_injections 1;
- }
- if ($query_string ~ "[a-zA-Z0-9_]=(\.\.//?)+") {
- set $block_file_injections 1;
- }
- if ($query_string ~ "[a-zA-Z0-9_]=/([a-z0-9_.]//?)+") {
- set $block_file_injections 1;
- }
- if ($block_file_injections = 1) {
- return 403;
- }
-
- ## Block common exploits
- set $block_common_exploits 0;
- if ($query_string ~ "(<|%3C).*script.*(>|%3E)") {
- set $block_common_exploits 1;
- }
- if ($query_string ~ "GLOBALS(=|\[|\%[0-9A-Z]{0,2})") {
- set $block_common_exploits 1;
- }
- if ($query_string ~ "_REQUEST(=|\[|\%[0-9A-Z]{0,2})") {
- set $block_common_exploits 1;
- }
- if ($query_string ~ "proc/self/environ") {
- set $block_common_exploits 1;
- }
- if ($query_string ~ "mosConfig_[a-zA-Z_]{1,21}(=|\%3D)") {
- set $block_common_exploits 1;
- }
- if ($query_string ~ "base64_(en|de)code\(.*\)") {
- set $block_common_exploits 1;
- }
- if ($block_common_exploits = 1) {
- return 403;
- }
-
- ## Block spam
- set $block_spam 0;
- if ($query_string ~ "\b(ultram|unicauca|valium|viagra|vicodin|xanax|ypxaieo)\b") {
- set $block_spam 1;
- }
- if ($query_string ~ "\b(erections|hoodia|huronriveracres|impotence|levitra|libido)\b") {
- set $block_spam 1;
- }
- if ($query_string ~ "\b(ambien|blue\spill|cialis|cocaine|ejaculation|erectile)\b") {
- set $block_spam 1;
- }
- if ($query_string ~ "\b(lipitor|phentermin|pro[sz]ac|sandyauer|tramadol|troyhamby)\b") {
- set $block_spam 1;
- }
- if ($block_spam = 1) {
- return 403;
- }
-
- ## Block user agents
- set $block_user_agents 0;
-
- # Don't disable wget if you need it to run cron jobs!
- #if ($http_user_agent ~ "Wget") {
- # set $block_user_agents 1;
- #}
-
- # Disable Akeeba Remote Control 2.5 and earlier
- if ($http_user_agent ~ "Indy Library") {
- set $block_user_agents 1;
- }
-
- # Common bandwidth hoggers and hacking tools.
- if ($http_user_agent ~ "libwww-perl") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "GetRight") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "GetWeb!") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "Go!Zilla") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "Download Demon") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "Go-Ahead-Got-It") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "TurnitinBot") {
- set $block_user_agents 1;
- }
- if ($http_user_agent ~ "GrabNet") {
- set $block_user_agents 1;
- }
-
- if ($block_user_agents = 1) {
- return 403;
- }
사용 방법
1. rpm 의 표준 설치 경로 에 따라 설정 파일 이 / etc / nginx / nginx. conf 와 / etc / nginx / conf. d / default. conf 라 고 가정 하고 상기 내용 을 / etc / nginx / nginx - extra. conf 로 저장 합 니 다.
2. server 표시 줄 에 "include nginx - extra. conf" 를 추가 합 니 다. 즉, 다음 과 같은 형식 입 니 다.
- server {
- [...]
-
- include nginx-extra.conf
- }
주: howtoforge 에서 큰 코드 를 따 왔 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
거품 정렬 최적화 알고리즘 (자바)기본 적 이 고 질서 있 는 데이터 에 대해 최 적 화 된 거품 정렬 을 사용 하 는 것 이 가장 좋 은 선택 이다. 그 는 데이터 가 질서 가 있 는 것 을 발견 한 후에 정렬 을 끝 낼 것 이다. 코드 는 다음 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.