自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Nginx靜態(tài)文件的配置與安全認(rèn)定

開發(fā) 前端
Nginx靜態(tài)文件需要我們不斷的維護(hù),但是要如何才能進(jìn)行配置和維護(hù)呢?下面的命令會對你有所幫助,希望大家享受Nginx的服務(wù)。

本文主要講述Nginx靜態(tài)文件,怎樣創(chuàng)建Nginx靜態(tài)文件項目。這些內(nèi)容都是一些門戶網(wǎng)站和技術(shù)論壇找到的,中間可能有不少錯誤是我沒有挑出的,歡迎大家 指正。

我們的目標(biāo)是配置一個服務(wù)最快且cpu/io利用最有效的服務(wù)器,更重要的是一個安全的web服務(wù)器,下面的配置文件適用于***版Nginx

  1. #######################################################  
  2. ### Calomel.org /etc/Nginx.conf BEGIN  
  3. #######################################################  
  4. #  
  5. pid /var/run/Nginx.pid;  
  6. user Nginx Nginx;  
  7. worker_processes 2;  
  8. events {  
  9. worker_connections 1024;  
  10. }  
  11. http {  
  12. ## MIME types  
  13. include mime.types;  
  14. # types {  
  15. # image/gif gif;  
  16. # image/jpeg jpg;  
  17. # image/png png;  
  18. # image/bmp bmp;  
  19. # image/x-icon ico;  
  20. # text/css css;  
  21. # text/html html;  
  22. # text/plain bob;  
  23. # text/plain txt;  
  24. }  
  25. default_type application/octet-stream;  
  26. ## Size Limits  
  27. client_body_buffer_size 8k;  
  28. client_header_buffer_size 1k;  
  29. client_max_body_size 1k;  
  30. large_client_header_buffers 1 1k;  
  31. ## Timeouts   
  32. client_body_timeout 5;  
  33. client_header_timeout 5;  
  34. keepalive_timeout 5 5;  
  35. send_timeout 5;  
  36. ## General Options  
  37. ignore_invalid_headers on;  
  38. limit_zone gulag $binary_remote_addr 1m;  
  39. recursive_error_pages on;  
  40. sendfile on;  
  41. server_name_in_redirect off;  
  42. server_tokens off;  
  43. ## TCP options   
  44. tcp_nodelay on;  
  45. tcp_nopush on;  
  46. ## Compression  
  47. gzip on;  
  48. gzip_static on;  
  49. gzip_buffers 16 8k;  
  50. gzip_comp_level 9;  
  51. gzip_http_version 1.0;  
  52. gzip_min_length 0;  
  53. gzip_types text/plain text/html text/css image/x-icon image/
    bmp;  
  54. gzip_vary on;  
  55. ## Log Format  
  56. log_format main '$remote_addr $host $remote_user [$time_
    local] "$request" '  
  57. '$status $body_bytes_sent "$http_referer" "$http_user_
    agent" "$gzip_ratio"';  
  58. ## Deny access to any host other than (www.)mydomain.com  
  59. server {  
  60. server_name _; #default  
  61. return 444;  
  62. }  
  63. ## Server (www.)mydomain.com  
  64. server {  
  65. access_log /var/log/Nginx/access.log main buffer=32k;  
  66. error_log /var/log/Nginx/error.log info;  
  67. expires 31d;  
  68. limit_conn gulag 5;  
  69. listen 127.0.0.1:8080 rcvbuf=64k backlog=128;  
  70. root /disk01/htdocs;  
  71. server_name mydomain.com www.mydomain;  
  72. ## SSL Options (only enable if you use a SSL certificate)  
  73. # ssl on;  
  74. # ssl_certificate /ssl_keys/mydomain.com_ssl.crt;  
  75. # ssl_certificate_key /ssl_keys/mydomain_ssl.key;  
  76. # ssl_ciphers HIGH:!ADH:!MD5;  
  77. # ssl_prefer_server_ciphers on;  
  78. # ssl_protocols SSLv3;  
  79. # ssl_session_cache shared:SSL:1m;  
  80. # ssl_session_timeout 5m;  
  81. ## Only allow GET and HEAD request methods  
  82. if ($request_method !~ ^(GET|HEAD)$ ) {  
  83. return 444;  
  84. }  
  85. ## Deny illegal Host headers  
  86. if ($host !~* ^(mydomain.com|www.mydomain.com)$ ) {  
  87. return 444;  
  88. }  
  89. ## Deny certain User-Agents (case insensitive)  
  90. ## The ~* makes it case insensitive as opposed to just a ~  
  91. if ($http_user_agent ~* (Baiduspider|Jullo) ) {  
  92. return 444;  
  93. }  
  94. ## Deny certain Referers (case insensitive)  
  95. ## The ~* makes it case insensitive as opposed to just a ~  
  96. if ($http_referer ~* (babes|click|diamond|forsale|girl|jewelry|
    love|nudit|organic|poker|porn|poweroversoftware|sex|teen|
    video|webcam|zippo) ) {  
  97. return 444;  
  98. }  
  99. ## Redirect from www to non-www  
  100. if ($host = 'www.mydomain.com' ) {  
  101. rewrite ^/(.*)$ http://mydomain.com/$1 permanent;  
  102. }  
  103. ## Stop Image and Document Hijacking  
  104. location ~* (\.jpg|\.png|\.css)$ {  
  105. if ($http_referer !~ ^(http://mydomain.com) ) {  
  106. return 444;  
  107. }  
  108. }  
  109. ## Restricted Access directory  
  110. location ^~ /secure/ {  
  111. allow 127.0.0.1/32;  
  112. allow 10.10.10.0/24;  
  113. deny all;  
  114. auth_basic "RESTRICTED ACCESS";  
  115. auth_basic_user_file /var/www/htdocs/secure/access_list;  
  116. }  
  117. ## Only allow these file types to document root  
  118. location / {  
  119. if ($request_uri ~* (^\/|\.html|\.jpg|\.org|\.png|\.css|
    favicon\.ico|robots\.txt)$ ) {  
  120. break;  
  121. }  
  122. return 444;  
  123. }  
  124. ## Serve an empty 1x1 gif _OR_ an error 204 (No Content) 
    for favicon.ico  
  125. location = /favicon.ico {  
  126. #empty_gif;  
  127. return 204;  
  128. }  
  129. ## System Maintenance (Service Unavailable)   
  130. if (-f $document_root/system_maintenance.html ) {  
  131. error_page 503 /system_maintenance.html;  
  132. return 503;  
  133. }  
  134. ## All other errors get the generic error page  
  135. error_page 400 401 402 403 404 405 406 407 408 409 410 411 
    412 413 414 415 416 417  
  136. 500 501 502 503 504 505 /error_page.html;  
  137. location /error_page.html {  
  138. internal;  
  139. }  
  140. }  
  141. }  
  142. #  
  143. #######################################################  
  144. ### Calomel.org /etc/Nginx.conf END  
  145. #######################################################  

以上就是對Nginx靜態(tài)文件命令的詳細(xì)介紹希望大家有所收獲。

【編輯推薦】

  1. Nginx重啟的簡單命令 kill
  2. Nginx狀態(tài)監(jiān)控如何實現(xiàn)自己的作用
  3. Nginx負(fù)載均衡配置的菜鳥修煉秘籍
  4. 深入學(xué)習(xí)有關(guān)Nginx負(fù)載均衡的安裝過程
  5. Nginx+PHP配置相關(guān)進(jìn)程的簡要介紹
責(zé)任編輯:張浩 來源: 博客園
相關(guān)推薦

2024-01-24 13:40:45

2010-03-25 18:09:23

Nginx配置文件

2014-03-28 14:20:04

2011-11-08 13:46:44

靜態(tài)文件Nginx優(yōu)化

2016-08-29 21:36:55

nginxWeb緩存

2013-05-15 10:56:19

靜態(tài)路由器路由器設(shè)備配置

2018-01-26 10:49:19

2013-07-15 10:39:43

2010-03-29 09:23:00

2011-08-22 14:43:36

靜態(tài)路由器

2010-03-30 18:04:45

Nginx http服

2010-03-30 15:25:42

Linux Nginx

2022-04-08 08:40:36

Nginx日志服務(wù)器

2010-02-22 15:59:48

2010-03-25 17:29:00

Nginx配置

2013-06-05 13:31:25

2020-04-09 13:23:29

Nginx配置文件模板

2010-03-25 18:31:03

Nginx配置文件

2014-06-09 10:36:00

2009-12-17 16:42:35

配置靜態(tài)路由
點贊
收藏

51CTO技術(shù)棧公眾號