PageRenderTime 28ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/office/eread/nginx/nginx.conf

http://jobzhu.googlecode.com/
Config | 780 lines | 596 code | 184 blank | 0 comment | 0 complexity | 150f5674ffc42d0509e6baf4e96aba03 MD5 | raw file
  1. # $Id: nginx.conf 24 2010-09-09 01:59:56Z fred1982@gmail.com $
  2. # nginx config file
  3. # zhuzhu@perlchina.org
  4. #
  5. user nobody nobody;
  6. worker_processes 3;
  7. worker_rlimit_nofile 80000;
  8. # [ debug | info | notice | warn | error | crit ]
  9. error_log logs/error.log warn;
  10. # access_log /dev/null;
  11. #error_log logs/error.log notice;
  12. #error_log logs/error.log info;
  13. pid logs/nginx.pid;
  14. events {
  15. worker_connections 45000;
  16. # use [ kqueue | rtsig | epoll | /dev/poll | select | poll ];
  17. use epoll;
  18. }
  19. #server_tokens off;
  20. #log_format IP '$remote_addr';
  21. #reset_timeout_connection on;
  22. #listen 0.0.0.0:80 default rcvbuf=8192 sndbuf=16384 backlog=32000 accept_filter=httpready;
  23. http {
  24. include conf/mime.types;
  25. default_type application/octet-stream;
  26. log_format main '$remote_addr - $remote_user [$time_local] $request '
  27. '"$status" $body_bytes_sent "$http_referer" '
  28. '"$http_user_agent" "$http_x_forwarded_for"';
  29. #access_log logs/access.log main;
  30. #access_log off;
  31. sendfile on;
  32. tcp_nopush on;
  33. #keepalive_timeout 0;
  34. client_header_timeout 10m;
  35. client_body_timeout 10m;
  36. send_timeout 10m;
  37. connection_pool_size 512;
  38. client_header_buffer_size 512;
  39. large_client_header_buffers 4 2k;
  40. request_pool_size 4k;
  41. #gzipping all text context
  42. gzip on;
  43. gzip_http_version 1.0;
  44. gzip_min_length 5000;
  45. gzip_buffers 4 8k;
  46. gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
  47. gzip_proxied any;
  48. gzip_comp_level 2;
  49. output_buffers 1 32k;
  50. postpone_output 1460;
  51. #sendfile on;
  52. #tcp_nopush on;
  53. tcp_nodelay on;
  54. keepalive_timeout 15 5;
  55. ignore_invalid_headers on;
  56. include /usr/local/nginx/conf/server-token.conf;
  57. upstream apache {
  58. server 127.0.0.1:8001;
  59. }
  60. upstream lighttpd {
  61. server 127.0.0.1:8080;
  62. }
  63. upstream squid {
  64. server 127.0.0.1:8000;
  65. }
  66. upstream lbsearch {
  67. server 192.168.1.26:8080 weight=5;
  68. server 192.168.1.24:8080 weight=4;
  69. }
  70. server {
  71. listen 80;
  72. server_name localhost www.isoshu.com isoshu.com;
  73. location ~ \.(ea|dna|testdna|url|fcgi)$ {
  74. proxy_set_header X-Real-IP $remote_addr;
  75. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  76. proxy_pass http://lighttpd;
  77. }
  78. # include /usr/local/nginx/conf/rewrite-index-url.conf;
  79. include /usr/local/nginx/conf/proxy.conf;
  80. #charset koi8-r;
  81. #access_log logs/host.access.log main;
  82. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  83. root /web/club;
  84. expires 3h;
  85. }
  86. location / {
  87. root /web/club;
  88. index index.php index.html index.htm;
  89. include /usr/local/nginx/conf/proxy_fallback.conf;
  90. }
  91. location /lbsearch {
  92. proxy_pass http://lbsearch/;
  93. }
  94. error_page 404 403 http://www.isoshu.com/error.html;
  95. # redirect server error pages to the static page /50x.html
  96. #
  97. #error_page 500 502 503 504 /50x.html;
  98. #location = /50x.html {
  99. # root html;
  100. #}
  101. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  102. #
  103. #location ~ \.php$ {
  104. # proxy_pass http://127.0.0.1;
  105. #}
  106. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  107. #
  108. #location ~ \.php$ {
  109. # fastcgi_pass 127.0.0.1:9000;
  110. # fastcgi_index index.php;
  111. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  112. # include conf/fastcgi_params;
  113. #}
  114. # deny access to .htaccess files, if Apache's document root
  115. # concurs with nginx's one
  116. #
  117. #location ~ /\.ht {
  118. # deny all;
  119. #}
  120. }
  121. server {
  122. listen 80;
  123. server_name tel.isoshu.com;
  124. include /usr/local/nginx/conf/proxy.conf;
  125. #access_log logs/host.access.log main;
  126. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  127. root /web/telclub;
  128. expires 3h;
  129. }
  130. location / {
  131. root /web/telclub;
  132. index index.php index.html index.htm;
  133. include /usr/local/nginx/conf/proxy_fallback.conf;
  134. }
  135. error_page 404 403 http://www.isoshu.com/error.html;
  136. }
  137. server {
  138. listen 80;
  139. server_name en.isoshu.com english.isoshu.com;
  140. include /usr/local/nginx/conf/proxy.conf;
  141. #access_log logs/host.access.log main;
  142. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  143. root /web/EmangaSearch;
  144. expires 3h;
  145. }
  146. location / {
  147. root /web/EmangaSearch;
  148. index index.php index.html index.htm;
  149. include /usr/local/nginx/conf/proxy_fallback.conf;
  150. }
  151. error_page 404 403 http://www.isoshu.com/error.html;
  152. }
  153. server {
  154. listen 80;
  155. server_name comic.isoshu.com;
  156. include /usr/local/nginx/conf/proxy.conf;
  157. #access_log logs/host.access.log main;
  158. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  159. root /web/comic;
  160. expires 3h;
  161. }
  162. location / {
  163. root /web/comic;
  164. index index.php index.html index.htm;
  165. include /usr/local/nginx/conf/proxy_fallback.conf;
  166. }
  167. error_page 404 403 http://www.isoshu.com/error.html;
  168. }
  169. server {
  170. listen 80;
  171. server_name book.isoshu.com;
  172. include /usr/local/nginx/conf/proxy.conf;
  173. #access_log logs/host.access.log main;
  174. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  175. root /web/book.isoshu.com;
  176. expires 3h;
  177. }
  178. location / {
  179. root /web/book.isoshu.com;
  180. index index.php index.html index.htm;
  181. include /usr/local/nginx/conf/proxy_fallback.conf;
  182. }
  183. error_page 404 403 http://www.isoshu.com/error.html;
  184. }
  185. server {
  186. listen 80;
  187. server_name manga.yuedu365.com www.mangapark.com mangapark.com emanga.isoshu.com;
  188. include /usr/local/nginx/conf/proxy.conf;
  189. #access_log logs/host.access.log main;
  190. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  191. root /web/manga.yuedu365.com;
  192. expires 3h;
  193. }
  194. location / {
  195. root /web/manga.yuedu365.com;
  196. index index.php index.html index.htm;
  197. include /usr/local/nginx/conf/proxy_fallback.conf;
  198. }
  199. error_page 404 403 http://www.isoshu.com/error.html;
  200. }
  201. server {
  202. listen 80;
  203. server_name facebook.yuedu365.com;
  204. include /usr/local/nginx/conf/proxy.conf;
  205. #access_log logs/host.access.log main;
  206. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  207. root /web/facebook;
  208. expires 3h;
  209. }
  210. location / {
  211. root /web/facebook;
  212. index index.php index.html index.htm;
  213. include /usr/local/nginx/conf/proxy_fallback.conf;
  214. }
  215. error_page 404 403 http://www.isoshu.com/error.html;
  216. }
  217. server {
  218. listen 80;
  219. server_name eshugo.com www.eshugo.com shop.isoshu.com;
  220. include /usr/local/nginx/conf/proxy-apache.conf;
  221. #access_log logs/host.access.log main;
  222. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  223. root /web/shop;
  224. expires 3h;
  225. }
  226. location / {
  227. root /web/shop;
  228. index index.php index.html index.htm;
  229. include /usr/local/nginx/conf/proxy_fallback-apache.conf;
  230. }
  231. error_page 404 403 http://www.isoshu.com/error.html;
  232. }
  233. server {
  234. listen 80;
  235. server_name novel.isoshu.com;
  236. include /usr/local/nginx/conf/proxy.conf;
  237. #access_log logs/host.access.log main;
  238. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  239. root /web/novel;
  240. expires 3h;
  241. }
  242. location / {
  243. root /web/novel;
  244. index index.php index.html index.htm;
  245. include /usr/local/nginx/conf/proxy_fallback.conf;
  246. }
  247. error_page 404 403 http://www.isoshu.com/error.html;
  248. }
  249. server {
  250. listen 80;
  251. server_name religion.isoshu.com;
  252. include /usr/local/nginx/conf/proxy.conf;
  253. #access_log logs/host.access.log main;
  254. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  255. root /web/religion;
  256. expires 3h;
  257. }
  258. location / {
  259. root /web/religion;
  260. index index.php index.html index.htm;
  261. include /usr/local/nginx/conf/proxy_fallback.conf;
  262. }
  263. error_page 404 403 http://www.isoshu.com/error.html;
  264. }
  265. server {
  266. listen 80;
  267. server_name life.isoshu.com;
  268. include /usr/local/nginx/conf/proxy.conf;
  269. #access_log logs/host.access.log main;
  270. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  271. root /web/life;
  272. expires 3h;
  273. }
  274. location / {
  275. root /web/life;
  276. index index.php index.html index.htm;
  277. include /usr/local/nginx/conf/proxy_fallback.conf;
  278. }
  279. error_page 404 403 http://www.isoshu.com/error.html;
  280. }
  281. server {
  282. listen 80;
  283. server_name business.isoshu.com book.china228.com book.tttz.com book.cdqss.com books.21manager.com books.cdqss.com reader.zxw114.com books.shangjie.biz book.d3kt.cn www.hnce.com comic.i8610.com;
  284. include /usr/local/nginx/conf/proxy.conf;
  285. #access_log logs/host.access.log main;
  286. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  287. root /web/business2;
  288. expires 3h;
  289. }
  290. location / {
  291. root /web/business2;
  292. index index.php index.html index.htm;
  293. include /usr/local/nginx/conf/proxy_fallback.conf;
  294. }
  295. error_page 404 403 http://www.isoshu.com/error.html;
  296. }
  297. server {
  298. listen 80;
  299. server_name news.isoshu.com;
  300. include /usr/local/nginx/conf/proxy.conf;
  301. #access_log logs/host.access.log main;
  302. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  303. root /web/news;
  304. expires 3h;
  305. }
  306. location / {
  307. root /web/news;
  308. index index.php index.html index.htm;
  309. include /usr/local/nginx/conf/proxy_fallback.conf;
  310. }
  311. error_page 404 403 http://www.isoshu.com/error.html;
  312. }
  313. server {
  314. listen 80;
  315. server_name img1.isoshu.com;
  316. include /usr/local/nginx/conf/proxy.conf;
  317. #access_log logs/host.access.log main;
  318. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  319. root /web/comic-img;
  320. expires 3h;
  321. }
  322. location / {
  323. root /web/comic-img;
  324. index index.php index.html index.htm;
  325. include /usr/local/nginx/conf/proxy_fallback.conf;
  326. }
  327. error_page 404 403 http://www.isoshu.com/error.html;
  328. }
  329. server {
  330. listen 80;
  331. server_name reader.isoshu.com download.stareread.com eread.isoshu.com;
  332. include /usr/local/nginx/conf/proxy.conf;
  333. #access_log logs/host.access.log main;
  334. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  335. root /web/reader;
  336. expires 3h;
  337. }
  338. location / {
  339. root /web/reader;
  340. index index.php index.html index.htm;
  341. include /usr/local/nginx/conf/proxy_fallback.conf;
  342. }
  343. error_page 404 403 http://www.isoshu.com/error.html;
  344. }
  345. server {
  346. listen 80;
  347. server_name comicadmin1.isoshu.com comicadmin.isoshu.com;
  348. include /usr/local/nginx/conf/proxy.conf;
  349. #access_log logs/host.access.log main;
  350. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  351. root /web/comic-admin;
  352. expires 3h;
  353. }
  354. location / {
  355. root /web/comic-admin;
  356. index index.php index.html index.htm;
  357. include /usr/local/nginx/conf/proxy_fallback.conf;
  358. }
  359. error_page 404 403 http://www.isoshu.com/error.html;
  360. }
  361. server {
  362. listen 80;
  363. server_name www.stareread.com stareread.com stareread.com.cn www.stareread.com.cn www.starebook.com.cn starebook.com.cn;
  364. include /usr/local/nginx/conf/proxy.conf;
  365. #access_log logs/host.access.log main;
  366. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  367. root /web/stareread;
  368. expires 3h;
  369. }
  370. location / {
  371. root /web/stareread;
  372. index index.php index.html index.htm;
  373. include /usr/local/nginx/conf/proxy_fallback.conf;
  374. }
  375. error_page 404 403 http://www.isoshu.com/error.html;
  376. }
  377. server {
  378. listen 80;
  379. server_name ebook.stareread.com;
  380. include /usr/local/nginx/conf/proxy.conf;
  381. #access_log logs/host.access.log main;
  382. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  383. root /web/ebookstareread;
  384. expires 3h;
  385. }
  386. location / {
  387. root /web/ebookstareread;
  388. index index.php index.html index.htm;
  389. include /usr/local/nginx/conf/proxy_fallback.conf;
  390. }
  391. error_page 404 403 http://www.isoshu.com/error.html;
  392. }
  393. server {
  394. listen 80;
  395. server_name pma.x.com;
  396. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|zip|html?|js|css)$ {
  397. root /web/pma;
  398. expires 3h;
  399. }
  400. include /usr/local/nginx/conf/proxy.conf;
  401. #access_log logs/host.access.log main;
  402. location / {
  403. root /web/pma;
  404. index index.php index.html index.htm;
  405. include /usr/local/nginx/conf/proxy_fallback.conf;
  406. }
  407. error_page 404 403 http://www.isoshu.com/error.html;
  408. }
  409. server {
  410. listen 80;
  411. server_name update.isoshu.com;
  412. include /usr/local/nginx/conf/proxy.conf;
  413. #access_log logs/host.access.log main;
  414. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|ico|html?|js|css)$ {
  415. root /web/update.isoshu.com;
  416. expires 3h;
  417. }
  418. location / {
  419. root /web/update.isoshu.com;
  420. index index.php index.html index.htm;
  421. include /usr/local/nginx/conf/proxy_fallback.conf;
  422. }
  423. error_page 404 403 http://www.isoshu.com/error.html;
  424. }
  425. server {
  426. listen 80;
  427. server_name mobile.isoshu.com;
  428. include /usr/local/nginx/conf/proxy.conf;
  429. #access_log logs/host.access.log main;
  430. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  431. root /web/mobile.isoshu.com/htdocs;
  432. expires 3h;
  433. }
  434. location / {
  435. root /web/mobile.isoshu.com/htdocs;
  436. index index.php index.html index.htm;
  437. include /usr/local/nginx/conf/proxy_fallback.conf;
  438. location ~ ^/admincp/ {
  439. proxy_pass http://apache;
  440. }
  441. }
  442. error_page 404 403 http://www.isoshu.com/error.html;
  443. }
  444. server {
  445. listen 80;
  446. server_name help.isoshu.com;
  447. include /usr/local/nginx/conf/proxy.conf;
  448. #access_log logs/host.access.log main;
  449. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  450. root /web/help.isoshu.com;
  451. expires 3h;
  452. }
  453. location / {
  454. root /web/help.isoshu.com;
  455. index index.php index.html index.htm;
  456. include /usr/local/nginx/conf/proxy_fallback.conf;
  457. }
  458. error_page 404 403 http://www.isoshu.com/error.html;
  459. }
  460. server {
  461. listen 80;
  462. server_name ecount.isoshu.com adcenter.isoshu.com;
  463. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  464. root /web/club;
  465. expires 3h;
  466. }
  467. include /usr/local/nginx/conf/proxy-lighttpd.conf;
  468. #access_log logs/host.access.log main;
  469. location / {
  470. root /web/club;
  471. index index.php index.html index.htm;
  472. include /usr/local/nginx/conf/proxy_fallback-lighttpd.conf;
  473. }
  474. error_page 404 403 http://www.isoshu.com/error.html;
  475. }
  476. server {
  477. listen 80;
  478. server_name ads.isoshu.com diy.isoshu.com diyads.isoshu.com;
  479. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  480. root /web/ads.isoshu.com;
  481. expires 3h;
  482. }
  483. include /usr/local/nginx/conf/proxy-apache.conf;
  484. #access_log logs/host.access.log main;
  485. location / {
  486. root /web/ads.isoshu.com;
  487. index index.php index.html index.htm;
  488. include /usr/local/nginx/conf/proxy_fallback-apache.conf;
  489. }
  490. error_page 404 403 http://www.isoshu.com/error.html;
  491. }
  492. server {
  493. listen 80;
  494. server_name dna.isoshu.com;
  495. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  496. root /web/dna.isoshu.com/htdocs;
  497. expires 3h;
  498. }
  499. include /usr/local/nginx/conf/proxy-apache.conf;
  500. #access_log logs/host.access.log main;
  501. location / {
  502. root /web/dna.isoshu.com/htdocs;
  503. index index.php index.html index.htm;
  504. include /usr/local/nginx/conf/proxy_fallback-apache.conf;
  505. }
  506. error_page 404 403 http://www.isoshu.com/error.html;
  507. }
  508. server {
  509. listen 80;
  510. server_name readonline.isoshu.com;
  511. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  512. root /web/club;
  513. expires 3h;
  514. }
  515. include /usr/local/nginx/conf/proxy-lighttpd.conf;
  516. #access_log logs/host.access.log main;
  517. location / {
  518. root /web/club;
  519. index index.php index.html index.htm;
  520. include /usr/local/nginx/conf/proxy_fallback-lighttpd.conf;
  521. }
  522. error_page 404 403 http://www.isoshu.com/error.html;
  523. }
  524. server {
  525. listen 80;
  526. server_name coverpic.isoshu.com;
  527. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  528. root /web/coverpic.isoshu.com;
  529. expires 3h;
  530. }
  531. #access_log logs/host.access.log main;
  532. error_page 404 403 http://www.isoshu.com/error.html;
  533. }
  534. server {
  535. listen 80;
  536. server_name chapter.isoshu.com;
  537. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  538. root /web/chapter.isoshu.com;
  539. expires 3h;
  540. }
  541. include /usr/local/nginx/conf/proxy-apache.conf;
  542. #access_log logs/host.access.log main;
  543. location / {
  544. root /web/chapter.isoshu.com;
  545. index index.php index.html index.htm;
  546. include /usr/local/nginx/conf/proxy_fallback-apache.conf;
  547. }
  548. error_page 404 403 http://www.isoshu.com/error.html;
  549. }
  550. server {
  551. listen 80;
  552. server_name bookbar.isoshu.com;
  553. location ~* ^.+.(jpe?g|gif|swf|bmp|txt|exe|mp3|rar|png|zip|ico|html?|js|css)$ {
  554. root /web/bookbar.isoshu.com;
  555. expires 3h;
  556. }
  557. include /usr/local/nginx/conf/proxy-apache.conf;
  558. #access_log logs/host.access.log main;
  559. location / {
  560. root /web/bookbar.isoshu.com;
  561. index index.php index.html index.htm;
  562. include /usr/local/nginx/conf/proxy_fallback-apache.conf;
  563. }
  564. error_page 404 403 http://www.isoshu.com/error.html;
  565. }
  566. # add vhost
  567. include /usr/local/nginx/conf/vhosts.conf;
  568. # another virtual host using mix of IP-, name-, and port-based configuration
  569. #
  570. #server {
  571. # listen 8000;
  572. # listen somename:8080;
  573. # server_name somename alias another.alias;
  574. # location / {
  575. # root html;
  576. # index index.html index.htm;
  577. # }
  578. #}
  579. # HTTPS server
  580. #
  581. #server {
  582. # listen 443;
  583. # server_name localhost;
  584. # ssl on;
  585. # ssl_certificate cert.pem;
  586. # ssl_certificate_key cert.key;
  587. # ssl_session_timeout 5m;
  588. # ssl_protocols SSLv2 SSLv3 TLSv1;
  589. # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
  590. # ssl_prefer_server_ciphers on;
  591. # location / {
  592. # root html;
  593. # index index.html index.htm;
  594. # }
  595. #}
  596. }