Advertisement
pandorazero

Untitled

Oct 12th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 48.16 KB | None | 0 0
  1.  
  2. user apache;worker_processes 10;
  3.  
  4. error_log /var/log/nginx/error.log warn;
  5. pid /var/run/nginx.pid;
  6.  
  7.  
  8. events {
  9. worker_connections 1024;
  10. }
  11.  
  12.  
  13. http {
  14. include /etc/nginx/mime.types;
  15. default_type application/octet-stream;
  16. limit_conn_zone $binary_remote_addr zone=addr:10m;
  17. limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s;
  18. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  19. '$status $body_bytes_sent "$http_referer" '
  20. '"$http_user_agent" "$http_x_forwarded_for"';
  21.  
  22. access_log /var/log/nginx/access.log main;
  23.  
  24. sendfile on;
  25. #tcp_nopush on;
  26.  
  27. keepalive_timeout 65;
  28.  
  29. #gzip on;
  30.  
  31. include /etc/nginx/conf.d/*.conf;
  32. include /usr/local/ispmgr/etc/nginx.domain;
  33. client_max_body_size 16M;
  34. log_format isp '$bytes_sent $request_length';
  35. server {
  36. server_name mon.serv-host.org.ua www.mon.serv-host.org.ua;
  37. listen 91.211.117.132
  38. listen 91.211.117.132:443 ssl;
  39. disable_symlinks if_not_owner from=$root_path;
  40. set $root_path /var/www/mon/data/www/mon.serv-host.org.ua;
  41. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  42. root $root_path;
  43. access_log /var/www/nginx-logs/mon isp;
  44. access_log /var/www/httpd-logs/mon.serv-host.org.ua.access.log ;
  45. error_page 404 = @fallback;
  46. }
  47. location / {
  48. proxy_pass http://91.211.117.132:81;
  49. proxy_redirect http://91.211.117.132:81/ /;
  50. proxy_set_header Host $host;
  51. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  52. proxy_set_header X-Forwarded-Proto $scheme;
  53. proxy_set_header X-Real-IP $remote_addr;
  54. }
  55. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  56. proxy_pass http://91.211.117.132:81;
  57. proxy_redirect http://91.211.117.132:81/ /;
  58. proxy_set_header Host $host;
  59. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  60. proxy_set_header X-Forwarded-Proto $scheme;
  61. proxy_set_header X-Real-IP $remote_addr;
  62. }
  63. location @fallback {
  64. proxy_pass http://91.211.117.132:81;
  65. proxy_set_header Host $host;
  66. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  67. proxy_set_header X-Forwarded-Proto $scheme;
  68. proxy_set_header X-Real-IP $remote_addr;
  69. }
  70. location ^~ /webstat/ {
  71. auth_basic "Restricted area";
  72. auth_basic_user_file /var/www/mon/data/etc/2623319.passwd;
  73. try_files $uri @fallback;
  74. }
  75. include /usr/local/ispmgr/etc/nginx.inc;
  76. }
  77. server {
  78. server_name ban.serv-host.org.ua www.ban.serv-host.org.ua;
  79. listen 91.211.117.132;
  80. listen 91.211.117.132:443 ssl;
  81. disable_symlinks if_not_owner from=$root_path;
  82. set $root_path /var/www/ban/data/www/ban.serv-host.org.ua;
  83. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  84. root $root_path;
  85. access_log /var/www/nginx-logs/ban isp;
  86. access_log /var/www/httpd-logs/ban.serv-host.org.ua.access.log ;
  87. error_page 404 = @fallback;
  88. }
  89. location / {
  90. proxy_pass http://91.211.117.132:81;
  91. proxy_redirect http://91.211.117.132:81/ /;
  92. proxy_set_header Host $host;
  93. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  94. proxy_set_header X-Forwarded-Proto $scheme;
  95. proxy_set_header X-Real-IP $remote_addr;
  96. }
  97. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  98. proxy_pass http://91.211.117.132:81;
  99. proxy_redirect http://91.211.117.132:81/ /;
  100. proxy_set_header Host $host;
  101. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  102. proxy_set_header X-Forwarded-Proto $scheme;
  103. proxy_set_header X-Real-IP $remote_addr;
  104. }
  105. location @fallback {
  106. proxy_pass http://91.211.117.132:81;
  107. proxy_set_header Host $host;
  108. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  109. proxy_set_header X-Forwarded-Proto $scheme;
  110. proxy_set_header X-Real-IP $remote_addr;
  111. }
  112. location ^~ /webstat/ {
  113. auth_basic "Restricted area";
  114. auth_basic_user_file /var/www/ban/data/etc/2756002.passwd;
  115. try_files $uri @fallback;
  116. }
  117. include /usr/local/ispmgr/etc/nginx.inc;
  118. ssl_certificate /var/www/httpd-cert/ban/ban.serv-host.org.ua.crt;
  119. ssl_certificate_key /var/www/httpd-cert/ban/ban.serv-host.org.ua.key;
  120. }
  121. server {
  122. server_name files.serv-host.org.ua www.files.serv-host.org.ua;
  123. listen 91.211.117.132;
  124. listen 91.211.117.132:443 ssl;
  125. disable_symlinks if_not_owner from=$root_path;
  126. set $root_path /var/www/files/data/www/files.serv-host.org.ua;
  127. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  128. root $root_path;
  129. access_log /var/www/nginx-logs/files isp;
  130. access_log /var/www/httpd-logs/files.serv-host.org.ua.access.log ;
  131. error_page 404 = @fallback;
  132. }
  133. location / {
  134. proxy_pass http://91.211.117.132:81;
  135. proxy_redirect http://91.211.117.132:81/ /;
  136. proxy_set_header Host $host;
  137. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  138. proxy_set_header X-Forwarded-Proto $scheme;
  139. proxy_set_header X-Real-IP $remote_addr;
  140. }
  141. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  142. proxy_pass http://91.211.117.132:81;
  143. proxy_redirect http://91.211.117.132:81/ /;
  144. proxy_set_header Host $host;
  145. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  146. proxy_set_header X-Forwarded-Proto $scheme;
  147. proxy_set_header X-Real-IP $remote_addr;
  148. }
  149. location @fallback {
  150. proxy_pass http://91.211.117.132:81;
  151. proxy_set_header Host $host;
  152. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  153. proxy_set_header X-Forwarded-Proto $scheme;
  154. proxy_set_header X-Real-IP $remote_addr;
  155. }
  156. location ^~ /webstat/ {
  157. auth_basic "Restricted area";
  158. auth_basic_user_file /var/www/files/data/etc/2757354.passwd;
  159. try_files $uri @fallback;
  160. }
  161. include /usr/local/ispmgr/etc/nginx.inc;
  162. ssl_certificate /var/www/httpd-cert/files/files.serv-host.org.ua.crt;
  163. ssl_certificate_key /var/www/httpd-cert/files/files.serv-host.org.ua.key;
  164. }
  165. server {
  166. server_name sb1.serv-host.org.ua www.sb1.serv-host.org.ua;
  167. listen 91.211.117.132;
  168. listen 91.211.117.132:443 ssl;
  169. disable_symlinks if_not_owner from=$root_path;
  170. set $root_path /var/www/sb1/data/www/sb1.serv-host.org.ua;
  171. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  172. root $root_path;
  173. access_log /var/www/nginx-logs/sb1 isp;
  174. access_log /var/www/httpd-logs/sb1.serv-host.org.ua.access.log ;
  175. error_page 404 = @fallback;
  176. }
  177. location / {
  178. proxy_pass http://91.211.117.132:81;
  179. proxy_redirect http://91.211.117.132:81/ /;
  180. proxy_set_header Host $host;
  181. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  182. proxy_set_header X-Forwarded-Proto $scheme;
  183. proxy_set_header X-Real-IP $remote_addr;
  184. }
  185. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  186. proxy_pass http://91.211.117.132:81;
  187. proxy_redirect http://91.211.117.132:81/ /;
  188. proxy_set_header Host $host;
  189. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  190. proxy_set_header X-Forwarded-Proto $scheme;
  191. proxy_set_header X-Real-IP $remote_addr;
  192. }
  193. location @fallback {
  194. proxy_pass http://91.211.117.132:81;
  195. proxy_set_header Host $host;
  196. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  197. proxy_set_header X-Forwarded-Proto $scheme;
  198. proxy_set_header X-Real-IP $remote_addr;
  199. }
  200. location ^~ /webstat/ {
  201. auth_basic "Restricted area";
  202. auth_basic_user_file /var/www/sb1/data/etc/2761112.passwd;
  203. try_files $uri @fallback;
  204. }
  205. include /usr/local/ispmgr/etc/nginx.inc;
  206. ssl_certificate /var/www/httpd-cert/sb1/sb1.serv-host.org.ua.crt;
  207. ssl_certificate_key /var/www/httpd-cert/sb1/sb1.serv-host.org.ua.key;
  208. }
  209. server {
  210. server_name srv31000.serv-host.org.ua www.srv31000.serv-host.org.ua;
  211. listen 91.211.117.132;
  212. listen 91.211.117.132:443 ssl;
  213. disable_symlinks if_not_owner from=$root_path;
  214. set $root_path /var/www/srv31000/data/www/srv31000.serv-host.org.ua;
  215. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  216. root $root_path;
  217. access_log /var/www/nginx-logs/srv31000 isp;
  218. access_log /var/www/httpd-logs/srv31000.serv-host.org.ua.access.log ;
  219. error_page 404 = @fallback;
  220. }
  221. location / {
  222. proxy_pass http://91.211.117.132:81;
  223. proxy_redirect http://91.211.117.132:81/ /;
  224. proxy_set_header Host $host;
  225. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  226. proxy_set_header X-Forwarded-Proto $scheme;
  227. proxy_set_header X-Real-IP $remote_addr;
  228. }
  229. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  230. proxy_pass http://91.211.117.132:81;
  231. proxy_redirect http://91.211.117.132:81/ /;
  232. proxy_set_header Host $host;
  233. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  234. proxy_set_header X-Forwarded-Proto $scheme;
  235. proxy_set_header X-Real-IP $remote_addr;
  236. }
  237. location @fallback {
  238. proxy_pass http://91.211.117.132:81;
  239. proxy_set_header Host $host;
  240. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  241. proxy_set_header X-Forwarded-Proto $scheme;
  242. proxy_set_header X-Real-IP $remote_addr;
  243. }
  244. location ^~ /webstat/ {
  245. auth_basic "Restricted area";
  246. auth_basic_user_file /var/www/srv31000/data/etc/2761510.passwd;
  247. try_files $uri @fallback;
  248. }
  249. include /usr/local/ispmgr/etc/nginx.inc;
  250. ssl_certificate /var/www/httpd-cert/srv31000/srv31000.serv-host.org.ua.crt;
  251. ssl_certificate_key /var/www/httpd-cert/srv31000/srv31000.serv-host.org.ua.key;
  252. }
  253. server {
  254. server_name srv335000.serv-host.org.ua www.srv335000.serv-host.org.ua;
  255. listen 91.211.117.132;
  256. listen 91.211.117.132:443 ssl;
  257. disable_symlinks if_not_owner from=$root_path;
  258. set $root_path /var/www/srv335000/data/www/srv335000.serv-host.org.ua;
  259. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  260. root $root_path;
  261. access_log /var/www/nginx-logs/srv335000 isp;
  262. access_log /var/www/httpd-logs/srv335000.serv-host.org.ua.access.log ;
  263. error_page 404 = @fallback;
  264. }
  265. location / {
  266. proxy_pass http://91.211.117.132:81;
  267. proxy_redirect http://91.211.117.132:81/ /;
  268. proxy_set_header Host $host;
  269. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  270. proxy_set_header X-Forwarded-Proto $scheme;
  271. proxy_set_header X-Real-IP $remote_addr;
  272. }
  273. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  274. proxy_pass http://91.211.117.132:81;
  275. proxy_redirect http://91.211.117.132:81/ /;
  276. proxy_set_header Host $host;
  277. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  278. proxy_set_header X-Forwarded-Proto $scheme;
  279. proxy_set_header X-Real-IP $remote_addr;
  280. }
  281. location @fallback {
  282. proxy_pass http://91.211.117.132:81;
  283. proxy_set_header Host $host;
  284. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  285. proxy_set_header X-Forwarded-Proto $scheme;
  286. proxy_set_header X-Real-IP $remote_addr;
  287. }
  288. location ^~ /webstat/ {
  289. auth_basic "Restricted area";
  290. auth_basic_user_file /var/www/srv335000/data/etc/3016718.passwd;
  291. try_files $uri @fallback;
  292. }
  293. include /usr/local/ispmgr/etc/nginx.inc;
  294. ssl_certificate /var/www/httpd-cert/srv335000/srv335000.serv-host.org.ua.crt;
  295. ssl_certificate_key /var/www/httpd-cert/srv335000/srv335000.serv-host.org.ua.key;
  296. }
  297. server {
  298. server_name f1nchdl.serv-host.org.ua www.f1nchdl.serv-host.org.ua;
  299. listen 91.211.117.132;
  300. listen 91.211.117.132:443 ssl;
  301. disable_symlinks if_not_owner from=$root_path;
  302. set $root_path /var/www/f1nchdl/data/www/f1nchdl.serv-host.org.ua;
  303. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  304. root $root_path;
  305. access_log /var/www/nginx-logs/f1nchdl isp;
  306. access_log /var/www/httpd-logs/f1nchdl.serv-host.org.ua.access.log ;
  307. error_page 404 = @fallback;
  308. }
  309. location / {
  310. proxy_pass http://91.211.117.132:81;
  311. proxy_redirect http://91.211.117.132:81/ /;
  312. proxy_set_header Host $host;
  313. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  314. proxy_set_header X-Forwarded-Proto $scheme;
  315. proxy_set_header X-Real-IP $remote_addr;
  316. }
  317. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  318. proxy_pass http://91.211.117.132:81;
  319. proxy_redirect http://91.211.117.132:81/ /;
  320. proxy_set_header Host $host;
  321. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  322. proxy_set_header X-Forwarded-Proto $scheme;
  323. proxy_set_header X-Real-IP $remote_addr;
  324. }
  325. location @fallback {
  326. proxy_pass http://91.211.117.132:81;
  327. proxy_set_header Host $host;
  328. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  329. proxy_set_header X-Forwarded-Proto $scheme;
  330. proxy_set_header X-Real-IP $remote_addr;
  331. }
  332. location ^~ /webstat/ {
  333. auth_basic "Restricted area";
  334. auth_basic_user_file /var/www/f1nchdl/data/etc/3145739.passwd;
  335. try_files $uri @fallback;
  336. }
  337. include /usr/local/ispmgr/etc/nginx.inc;
  338. ssl_certificate /var/www/httpd-cert/f1nchdl/f1nchdl.serv-host.org.ua.crt;
  339. ssl_certificate_key /var/www/httpd-cert/f1nchdl/f1nchdl.serv-host.org.ua.key;
  340. }
  341. server {
  342. server_name srv1337000.serv-host.org.ua www.srv1337000.serv-host.org.ua;
  343. listen 91.211.117.132;
  344. listen 91.211.117.132:443 ssl;
  345. disable_symlinks if_not_owner from=$root_path;
  346. set $root_path /var/www/srv1337000/data/www/srv1337000.serv-host.org.ua;
  347. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  348. root $root_path;
  349. access_log /var/www/nginx-logs/srv1337000 isp;
  350. access_log /var/www/httpd-logs/srv1337000.serv-host.org.ua.access.log ;
  351. error_page 404 = @fallback;
  352. }
  353. location / {
  354. proxy_pass http://91.211.117.132:81;
  355. proxy_redirect http://91.211.117.132:81/ /;
  356. proxy_set_header Host $host;
  357. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  358. proxy_set_header X-Forwarded-Proto $scheme;
  359. proxy_set_header X-Real-IP $remote_addr;
  360. }
  361. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  362. proxy_pass http://91.211.117.132:81;
  363. proxy_redirect http://91.211.117.132:81/ /;
  364. proxy_set_header Host $host;
  365. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  366. proxy_set_header X-Forwarded-Proto $scheme;
  367. proxy_set_header X-Real-IP $remote_addr;
  368. }
  369. location @fallback {
  370. proxy_pass http://91.211.117.132:81;
  371. proxy_set_header Host $host;
  372. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  373. proxy_set_header X-Forwarded-Proto $scheme;
  374. proxy_set_header X-Real-IP $remote_addr;
  375. }
  376. location ^~ /webstat/ {
  377. auth_basic "Restricted area";
  378. auth_basic_user_file /var/www/srv1337000/data/etc/3276810.passwd;
  379. try_files $uri @fallback;
  380. }
  381. include /usr/local/ispmgr/etc/nginx.inc;
  382. ssl_certificate /var/www/httpd-cert/srv1337000/srv1337000.serv-host.org.ua.crt;
  383. ssl_certificate_key /var/www/httpd-cert/srv1337000/srv1337000.serv-host.org.ua.key;
  384. }
  385. server {
  386. server_name hw.serv-host.org.ua www.hw.serv-host.org.ua;
  387. listen 91.211.117.132;
  388. listen 91.211.117.132:443 ssl;
  389. disable_symlinks if_not_owner from=$root_path;
  390. set $root_path /var/www/hw/data/www/hw.serv-host.org.ua;
  391. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  392. root $root_path;
  393. access_log /var/www/nginx-logs/hw isp;
  394. access_log /var/www/httpd-logs/hw.serv-host.org.ua.access.log ;
  395. error_page 404 = @fallback;
  396. }
  397. location / {
  398. proxy_pass http://91.211.117.132:81;
  399. proxy_redirect http://91.211.117.132:81/ /;
  400. proxy_set_header Host $host;
  401. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  402. proxy_set_header X-Forwarded-Proto $scheme;
  403. proxy_set_header X-Real-IP $remote_addr;
  404. }
  405. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  406. proxy_pass http://91.211.117.132:81;
  407. proxy_redirect http://91.211.117.132:81/ /;
  408. proxy_set_header Host $host;
  409. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  410. proxy_set_header X-Forwarded-Proto $scheme;
  411. proxy_set_header X-Real-IP $remote_addr;
  412. }
  413. location @fallback {
  414. proxy_pass http://91.211.117.132:81;
  415. proxy_set_header Host $host;
  416. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  417. proxy_set_header X-Forwarded-Proto $scheme;
  418. proxy_set_header X-Real-IP $remote_addr;
  419. }
  420. location ^~ /webstat/ {
  421. auth_basic "Restricted area";
  422. auth_basic_user_file /var/www/hw/data/etc/3278481.passwd;
  423. try_files $uri @fallback;
  424. }
  425. include /usr/local/ispmgr/etc/nginx.inc;
  426. ssl_certificate /var/www/httpd-cert/hw/hw.serv-host.org.ua.crt;
  427. ssl_certificate_key /var/www/httpd-cert/hw/hw.serv-host.org.ua.key;
  428. }
  429. server {
  430. server_name baan.serv-host.org.ua www.baan.serv-host.org.ua;
  431. listen 91.211.117.132;
  432. listen 91.211.117.132:443 ssl;
  433. disable_symlinks if_not_owner from=$root_path;
  434. set $root_path /var/www/baan/data/www/baan.serv-host.org.ua;
  435. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  436. root $root_path;
  437. access_log /var/www/nginx-logs/baan isp;
  438. access_log /var/www/httpd-logs/baan.serv-host.org.ua.access.log ;
  439. error_page 404 = @fallback;
  440. }
  441. location / {
  442. proxy_pass http://91.211.117.132:81;
  443. proxy_redirect http://91.211.117.132:81/ /;
  444. proxy_set_header Host $host;
  445. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  446. proxy_set_header X-Forwarded-Proto $scheme;
  447. proxy_set_header X-Real-IP $remote_addr;
  448. }
  449. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  450. proxy_pass http://91.211.117.132:81;
  451. proxy_redirect http://91.211.117.132:81/ /;
  452. proxy_set_header Host $host;
  453. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  454. proxy_set_header X-Forwarded-Proto $scheme;
  455. proxy_set_header X-Real-IP $remote_addr;
  456. }
  457. location @fallback {
  458. proxy_pass http://91.211.117.132:81;
  459. proxy_set_header Host $host;
  460. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  461. proxy_set_header X-Forwarded-Proto $scheme;
  462. proxy_set_header X-Real-IP $remote_addr;
  463. }
  464. location ^~ /webstat/ {
  465. auth_basic "Restricted area";
  466. auth_basic_user_file /var/www/baan/data/etc/3278611.passwd;
  467. try_files $uri @fallback;
  468. }
  469. include /usr/local/ispmgr/etc/nginx.inc;
  470. ssl_certificate /var/www/httpd-cert/baan/baan.serv-host.org.ua.crt;
  471. ssl_certificate_key /var/www/httpd-cert/baan/baan.serv-host.org.ua.key;
  472. }
  473. server {
  474. server_name srv4610011.serv-host.org.ua www.srv4610011.serv-host.org.ua;
  475. listen 91.211.117.132;
  476. listen 91.211.117.132:443 ssl;
  477. disable_symlinks if_not_owner from=$root_path;
  478. set $root_path /var/www/srv4610011/data/www/srv4610011.serv-host.org.ua;
  479. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  480. root $root_path;
  481. access_log /var/www/nginx-logs/srv4610011 isp;
  482. access_log /var/www/httpd-logs/srv4610011.serv-host.org.ua.access.log ;
  483. error_page 404 = @fallback;
  484. }
  485. location / {
  486. proxy_pass http://91.211.117.132:81;
  487. proxy_redirect http://91.211.117.132:81/ /;
  488. proxy_set_header Host $host;
  489. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  490. proxy_set_header X-Forwarded-Proto $scheme;
  491. proxy_set_header X-Real-IP $remote_addr;
  492. }
  493. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  494. proxy_pass http://91.211.117.132:81;
  495. proxy_redirect http://91.211.117.132:81/ /;
  496. proxy_set_header Host $host;
  497. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  498. proxy_set_header X-Forwarded-Proto $scheme;
  499. proxy_set_header X-Real-IP $remote_addr;
  500. }
  501. location @fallback {
  502. proxy_pass http://91.211.117.132:81;
  503. proxy_set_header Host $host;
  504. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  505. proxy_set_header X-Forwarded-Proto $scheme;
  506. proxy_set_header X-Real-IP $remote_addr;
  507. }
  508. location ^~ /webstat/ {
  509. auth_basic "Restricted area";
  510. auth_basic_user_file /var/www/srv4610011/data/etc/3280026.passwd;
  511. try_files $uri @fallback;
  512. }
  513. include /usr/local/ispmgr/etc/nginx.inc;
  514. ssl_certificate /var/www/httpd-cert/srv4610011/srv4610011.serv-host.org.ua.crt;
  515. ssl_certificate_key /var/www/httpd-cert/srv4610011/srv4610011.serv-host.org.ua.key;
  516. }
  517. server {
  518. server_name amx8.serv-host.org.ua www.amx8.serv-host.org.ua;
  519. listen 91.211.117.132;
  520. listen 91.211.117.132:443 ssl;
  521. disable_symlinks if_not_owner from=$root_path;
  522. set $root_path /var/www/amx8/data/www/amx8.serv-host.org.ua;
  523. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  524. root $root_path;
  525. access_log /var/www/nginx-logs/amx8 isp;
  526. access_log /var/www/httpd-logs/amx8.serv-host.org.ua.access.log ;
  527. error_page 404 = @fallback;
  528. }
  529. location / {
  530. proxy_pass http://91.211.117.132:81;
  531. proxy_redirect http://91.211.117.132:81/ /;
  532. proxy_set_header Host $host;
  533. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  534. proxy_set_header X-Forwarded-Proto $scheme;
  535. proxy_set_header X-Real-IP $remote_addr;
  536. }
  537. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  538. proxy_pass http://91.211.117.132:81;
  539. proxy_redirect http://91.211.117.132:81/ /;
  540. proxy_set_header Host $host;
  541. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  542. proxy_set_header X-Forwarded-Proto $scheme;
  543. proxy_set_header X-Real-IP $remote_addr;
  544. }
  545. location @fallback {
  546. proxy_pass http://91.211.117.132:81;
  547. proxy_set_header Host $host;
  548. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  549. proxy_set_header X-Forwarded-Proto $scheme;
  550. proxy_set_header X-Real-IP $remote_addr;
  551. }
  552. location ^~ /webstat/ {
  553. auth_basic "Restricted area";
  554. auth_basic_user_file /var/www/amx8/data/etc/3282051.passwd;
  555. try_files $uri @fallback;
  556. }
  557. include /usr/local/ispmgr/etc/nginx.inc;
  558. ssl_certificate /var/www/httpd-cert/amx8/amx8.serv-host.org.ua.crt;
  559. ssl_certificate_key /var/www/httpd-cert/amx8/amx8.serv-host.org.ua.key;
  560. }
  561. server {
  562. server_name cz.serv-host.org.ua www.cz.serv-host.org.ua;
  563. listen 91.211.117.132;
  564. listen 91.211.117.132:443 ssl;
  565. disable_symlinks if_not_owner from=$root_path;
  566. set $root_path /var/www/cz/data/www/cz.serv-host.org.ua;
  567. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  568. root $root_path;
  569. access_log /var/www/nginx-logs/cz isp;
  570. access_log /var/www/httpd-logs/cz.serv-host.org.ua.access.log ;
  571. error_page 404 = @fallback;
  572. }
  573. location / {
  574. proxy_pass http://91.211.117.132:81;
  575. proxy_redirect http://91.211.117.132:81/ /;
  576. proxy_set_header Host $host;
  577. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  578. proxy_set_header X-Forwarded-Proto $scheme;
  579. proxy_set_header X-Real-IP $remote_addr;
  580. }
  581. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  582. proxy_pass http://91.211.117.132:81;
  583. proxy_redirect http://91.211.117.132:81/ /;
  584. proxy_set_header Host $host;
  585. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  586. proxy_set_header X-Forwarded-Proto $scheme;
  587. proxy_set_header X-Real-IP $remote_addr;
  588. }
  589. location @fallback {
  590. proxy_pass http://91.211.117.132:81;
  591. proxy_set_header Host $host;
  592. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  593. proxy_set_header X-Forwarded-Proto $scheme;
  594. proxy_set_header X-Real-IP $remote_addr;
  595. }
  596. location ^~ /webstat/ {
  597. auth_basic "Restricted area";
  598. auth_basic_user_file /var/www/cz/data/etc/3283613.passwd;
  599. try_files $uri @fallback;
  600. }
  601. include /usr/local/ispmgr/etc/nginx.inc;
  602. ssl_certificate /var/www/httpd-cert/cz/cz.serv-host.org.ua.crt;
  603. ssl_certificate_key /var/www/httpd-cert/cz/cz.serv-host.org.ua.key;
  604. }
  605. server {
  606. server_name bans.serv-host.org.ua www.bans.serv-host.org.ua;
  607. listen 91.211.117.132;
  608. listen 91.211.117.132:443 ssl;
  609. disable_symlinks if_not_owner from=$root_path;
  610. set $root_path /var/www/bans/data/www/bans.serv-host.org.ua;
  611. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  612. root $root_path;
  613. access_log /var/www/nginx-logs/bans isp;
  614. access_log /var/www/httpd-logs/bans.serv-host.org.ua.access.log ;
  615. error_page 404 = @fallback;
  616. }
  617. location / {
  618. proxy_pass http://91.211.117.132:81;
  619. proxy_redirect http://91.211.117.132:81/ /;
  620. proxy_set_header Host $host;
  621. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  622. proxy_set_header X-Forwarded-Proto $scheme;
  623. proxy_set_header X-Real-IP $remote_addr;
  624. }
  625. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  626. proxy_pass http://91.211.117.132:81;
  627. proxy_redirect http://91.211.117.132:81/ /;
  628. proxy_set_header Host $host;
  629. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  630. proxy_set_header X-Forwarded-Proto $scheme;
  631. proxy_set_header X-Real-IP $remote_addr;
  632. }
  633. location @fallback {
  634. proxy_pass http://91.211.117.132:81;
  635. proxy_set_header Host $host;
  636. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  637. proxy_set_header X-Forwarded-Proto $scheme;
  638. proxy_set_header X-Real-IP $remote_addr;
  639. }
  640. location ^~ /webstat/ {
  641. auth_basic "Restricted area";
  642. auth_basic_user_file /var/www/bans/data/etc/3409349.passwd;
  643. try_files $uri @fallback;
  644. }
  645. include /usr/local/ispmgr/etc/nginx.inc;
  646. ssl_certificate /var/www/httpd-cert/bans/bans.serv-host.org.ua.crt;
  647. ssl_certificate_key /var/www/httpd-cert/bans/bans.serv-host.org.ua.key;
  648. }
  649. server {
  650. server_name srv135500.serv-host.org.ua www.srv135500.serv-host.org.ua;
  651. listen 91.211.117.132;
  652. disable_symlinks if_not_owner from=$root_path;
  653. set $root_path /var/www/srv135500/data/www/srv135500.serv-host.org.ua;
  654. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  655. root $root_path;
  656. access_log /var/www/nginx-logs/srv135500 isp;
  657. access_log /var/www/httpd-logs/srv135500.serv-host.org.ua.access.log ;
  658. error_page 404 = @fallback;
  659. }
  660. location / {
  661. proxy_pass http://91.211.117.132:81;
  662. proxy_redirect http://91.211.117.132:81/ /;
  663. proxy_set_header Host $host;
  664. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  665. proxy_set_header X-Forwarded-Proto $scheme;
  666. proxy_set_header X-Real-IP $remote_addr;
  667. }
  668. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  669. proxy_pass http://91.211.117.132:81;
  670. proxy_redirect http://91.211.117.132:81/ /;
  671. proxy_set_header Host $host;
  672. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  673. proxy_set_header X-Forwarded-Proto $scheme;
  674. proxy_set_header X-Real-IP $remote_addr;
  675. }
  676. location @fallback {
  677. proxy_pass http://91.211.117.132:81;
  678. proxy_set_header Host $host;
  679. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  680. proxy_set_header X-Forwarded-Proto $scheme;
  681. proxy_set_header X-Real-IP $remote_addr;
  682. }
  683. location ^~ /webstat/ {
  684. auth_basic "Restricted area";
  685. auth_basic_user_file /var/www/srv135500/data/etc/3671935.passwd;
  686. try_files $uri @fallback;
  687. }
  688. include /usr/local/ispmgr/etc/nginx.inc;
  689. }
  690. server {
  691. server_name srv1360000.serv-host.org.ua www.srv1360000.serv-host.org.ua;
  692. listen 91.211.117.132;
  693. listen 91.211.117.132:443 ssl;
  694. disable_symlinks if_not_owner from=$root_path;
  695. set $root_path /var/www/srv1360000/data/www/srv1360000.serv-host.org.ua;
  696. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  697. root $root_path;
  698. access_log /var/www/nginx-logs/srv1360000 isp;
  699. access_log /var/www/httpd-logs/srv1360000.serv-host.org.ua.access.log ;
  700. error_page 404 = @fallback;
  701. }
  702. location / {
  703. proxy_pass http://91.211.117.132:81;
  704. proxy_redirect http://91.211.117.132:81/ /;
  705. proxy_set_header Host $host;
  706. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  707. proxy_set_header X-Forwarded-Proto $scheme;
  708. proxy_set_header X-Real-IP $remote_addr;
  709. }
  710. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  711. proxy_pass http://91.211.117.132:81;
  712. proxy_redirect http://91.211.117.132:81/ /;
  713. proxy_set_header Host $host;
  714. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  715. proxy_set_header X-Forwarded-Proto $scheme;
  716. proxy_set_header X-Real-IP $remote_addr;
  717. }
  718. location @fallback {
  719. proxy_pass http://91.211.117.132:81;
  720. proxy_set_header Host $host;
  721. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  722. proxy_set_header X-Forwarded-Proto $scheme;
  723. proxy_set_header X-Real-IP $remote_addr;
  724. }
  725. location ^~ /webstat/ {
  726. auth_basic "Restricted area";
  727. auth_basic_user_file /var/www/srv1360000/data/etc/3024819.passwd;
  728. try_files $uri @fallback;
  729. }
  730. include /usr/local/ispmgr/etc/nginx.inc;
  731. ssl_certificate /var/www/httpd-cert/srv1360000/srv1360000.serv-host.org.ua.crt;
  732. ssl_certificate_key /var/www/httpd-cert/srv1360000/srv1360000.serv-host.org.ua.key;
  733. }
  734. server {
  735. server_name srv136200samp.serv-host.org.ua www.srv136200samp.serv-host.org.ua;
  736. listen 91.211.117.132;
  737. listen 91.211.117.132:443 ssl;
  738. disable_symlinks if_not_owner from=$root_path;
  739. set $root_path /var/www/srv136200samp/data/www/srv136200samp.serv-host.org.ua;
  740. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  741. root $root_path;
  742. access_log /var/www/nginx-logs/srv136200samp isp;
  743. access_log /var/www/httpd-logs/srv136200samp.serv-host.org.ua.access.log ;
  744. error_page 404 = @fallback;
  745. }
  746. location / {
  747. proxy_pass http://91.211.117.132:81;
  748. proxy_redirect http://91.211.117.132:81/ /;
  749. proxy_set_header Host $host;
  750. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  751. proxy_set_header X-Forwarded-Proto $scheme;
  752. proxy_set_header X-Real-IP $remote_addr;
  753. }
  754. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  755. proxy_pass http://91.211.117.132:81;
  756. proxy_redirect http://91.211.117.132:81/ /;
  757. proxy_set_header Host $host;
  758. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  759. proxy_set_header X-Forwarded-Proto $scheme;
  760. proxy_set_header X-Real-IP $remote_addr;
  761. }
  762. location @fallback {
  763. proxy_pass http://91.211.117.132:81;
  764. proxy_set_header Host $host;
  765. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  766. proxy_set_header X-Forwarded-Proto $scheme;
  767. proxy_set_header X-Real-IP $remote_addr;
  768. }
  769. location ^~ /webstat/ {
  770. auth_basic "Restricted area";
  771. auth_basic_user_file /var/www/srv136200samp/data/etc/3672521.passwd;
  772. try_files $uri @fallback;
  773. }
  774. include /usr/local/ispmgr/etc/nginx.inc;
  775. ssl_certificate /var/www/httpd-cert/srv136200samp/srv136200samp.serv-host.org.ua.crt;
  776. ssl_certificate_key /var/www/httpd-cert/srv136200samp/srv136200samp.serv-host.org.ua.key;
  777. }
  778. server {
  779. server_name srv1380000.serv-host.org.ua www.srv1380000.serv-host.org.ua;
  780. listen 91.211.117.132;
  781. listen 91.211.117.132:443 ssl;
  782. disable_symlinks if_not_owner from=$root_path;
  783. set $root_path /var/www/srv1380000/data/www/srv1380000.serv-host.org.ua;
  784. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  785. root $root_path;
  786. access_log /var/www/nginx-logs/srv1380000 isp;
  787. access_log /var/www/httpd-logs/srv1380000.serv-host.org.ua.access.log ;
  788. error_page 404 = @fallback;
  789. }
  790. location / {
  791. proxy_pass http://91.211.117.132:81;
  792. proxy_redirect http://91.211.117.132:81/ /;
  793. proxy_set_header Host $host;
  794. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  795. proxy_set_header X-Forwarded-Proto $scheme;
  796. proxy_set_header X-Real-IP $remote_addr;
  797. }
  798. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  799. proxy_pass http://91.211.117.132:81;
  800. proxy_redirect http://91.211.117.132:81/ /;
  801. proxy_set_header Host $host;
  802. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  803. proxy_set_header X-Forwarded-Proto $scheme;
  804. proxy_set_header X-Real-IP $remote_addr;
  805. }
  806. location @fallback {
  807. proxy_pass http://91.211.117.132:81;
  808. proxy_set_header Host $host;
  809. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  810. proxy_set_header X-Forwarded-Proto $scheme;
  811. proxy_set_header X-Real-IP $remote_addr;
  812. }
  813. location ^~ /webstat/ {
  814. auth_basic "Restricted area";
  815. auth_basic_user_file /var/www/srv1380000/data/etc/3543121.passwd;
  816. try_files $uri @fallback;
  817. }
  818. include /usr/local/ispmgr/etc/nginx.inc;
  819. ssl_certificate /var/www/httpd-cert/srv1380000/srv1380000.serv-host.org.ua.crt;
  820. ssl_certificate_key /var/www/httpd-cert/srv1380000/srv1380000.serv-host.org.ua.key;
  821. }
  822. server {
  823. server_name srv1389000.serv-host.org.ua www.srv1389000.serv-host.org.ua;
  824. listen 91.211.117.132;
  825. listen 91.211.117.132:443 ssl;
  826. disable_symlinks if_not_owner from=$root_path;
  827. set $root_path /var/www/srv1389000/data/www/srv1389000.serv-host.org.ua;
  828. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  829. root $root_path;
  830. access_log /var/www/nginx-logs/srv1389000 isp;
  831. access_log /var/www/httpd-logs/srv1389000.serv-host.org.ua.access.log ;
  832. error_page 404 = @fallback;
  833. }
  834. location / {
  835. proxy_pass http://91.211.117.132:81;
  836. proxy_redirect http://91.211.117.132:81/ /;
  837. proxy_set_header Host $host;
  838. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  839. proxy_set_header X-Forwarded-Proto $scheme;
  840. proxy_set_header X-Real-IP $remote_addr;
  841. }
  842. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  843. proxy_pass http://91.211.117.132:81;
  844. proxy_redirect http://91.211.117.132:81/ /;
  845. proxy_set_header Host $host;
  846. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  847. proxy_set_header X-Forwarded-Proto $scheme;
  848. proxy_set_header X-Real-IP $remote_addr;
  849. }
  850. location @fallback {
  851. proxy_pass http://91.211.117.132:81;
  852. proxy_set_header Host $host;
  853. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  854. proxy_set_header X-Forwarded-Proto $scheme;
  855. proxy_set_header X-Real-IP $remote_addr;
  856. }
  857. location ^~ /webstat/ {
  858. auth_basic "Restricted area";
  859. auth_basic_user_file /var/www/srv1389000/data/etc/3025887.passwd;
  860. try_files $uri @fallback;
  861. }
  862. include /usr/local/ispmgr/etc/nginx.inc;
  863. ssl_certificate /var/www/httpd-cert/srv1389000/srv1389000.serv-host.org.ua.crt;
  864. ssl_certificate_key /var/www/httpd-cert/srv1389000/srv1389000.serv-host.org.ua.key;
  865. }
  866. server {
  867. server_name mon2.serv-host.org.ua www.mon2.serv-host.org.ua;
  868. listen 91.211.117.132;
  869. listen 91.211.117.132:443 ssl;
  870. disable_symlinks if_not_owner from=$root_path;
  871. set $root_path /var/www/mon2/data/www/mon2.serv-host.org.ua;
  872. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  873. root $root_path;
  874. access_log /var/www/nginx-logs/mon2 isp;
  875. access_log /var/www/httpd-logs/mon2.serv-host.org.ua.access.log ;
  876. error_page 404 = @fallback;
  877. }
  878. location / {
  879. proxy_pass http://91.211.117.132:81;
  880. proxy_redirect http://91.211.117.132:81/ /;
  881. proxy_set_header Host $host;
  882. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  883. proxy_set_header X-Forwarded-Proto $scheme;
  884. proxy_set_header X-Real-IP $remote_addr;
  885. }
  886. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  887. proxy_pass http://91.211.117.132:81;
  888. proxy_redirect http://91.211.117.132:81/ /;
  889. proxy_set_header Host $host;
  890. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  891. proxy_set_header X-Forwarded-Proto $scheme;
  892. proxy_set_header X-Real-IP $remote_addr;
  893. }
  894. location @fallback {
  895. proxy_pass http://91.211.117.132:81;
  896. proxy_set_header Host $host;
  897. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  898. proxy_set_header X-Forwarded-Proto $scheme;
  899. proxy_set_header X-Real-IP $remote_addr;
  900. }
  901. location ^~ /webstat/ {
  902. auth_basic "Restricted area";
  903. auth_basic_user_file /var/www/mon2/data/etc/3542159.passwd;
  904. try_files $uri @fallback;
  905. }
  906. include /usr/local/ispmgr/etc/nginx.inc;
  907. ssl_certificate /var/www/httpd-cert/mon2/mon2.serv-host.org.ua.crt;
  908. ssl_certificate_key /var/www/httpd-cert/mon2/mon2.serv-host.org.ua.key;
  909. }
  910. server {
  911. server_name azazakin74sm.serv-host.org.ua www.azazakin74sm.serv-host.org.ua;
  912. listen 91.211.117.132;
  913. listen 91.211.117.132:443 ssl;
  914. disable_symlinks if_not_owner from=$root_path;
  915. set $root_path /var/www/azazakin74sm/data/www/azazakin74sm.serv-host.org.ua;
  916. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  917. root $root_path;
  918. access_log /var/www/nginx-logs/azazakin74sm isp;
  919. access_log /var/www/httpd-logs/azazakin74sm.serv-host.org.ua.access.log ;
  920. error_page 404 = @fallback;
  921. }
  922. location / {
  923. proxy_pass http://91.211.117.132:81;
  924. proxy_redirect http://91.211.117.132:81/ /;
  925. proxy_set_header Host $host;
  926. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  927. proxy_set_header X-Forwarded-Proto $scheme;
  928. proxy_set_header X-Real-IP $remote_addr;
  929. }
  930. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  931. proxy_pass http://91.211.117.132:81;
  932. proxy_redirect http://91.211.117.132:81/ /;
  933. proxy_set_header Host $host;
  934. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  935. proxy_set_header X-Forwarded-Proto $scheme;
  936. proxy_set_header X-Real-IP $remote_addr;
  937. }
  938. location @fallback {
  939. proxy_pass http://91.211.117.132:81;
  940. proxy_set_header Host $host;
  941. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  942. proxy_set_header X-Forwarded-Proto $scheme;
  943. proxy_set_header X-Real-IP $remote_addr;
  944. }
  945. location ^~ /webstat/ {
  946. auth_basic "Restricted area";
  947. auth_basic_user_file /var/www/azazakin74sm/data/etc/3547533.passwd;
  948. try_files $uri @fallback;
  949. }
  950. include /usr/local/ispmgr/etc/nginx.inc;
  951. ssl_certificate /var/www/httpd-cert/azazakin74sm/azazakin74sm.serv-host.org.ua.crt;
  952. ssl_certificate_key /var/www/httpd-cert/azazakin74sm/azazakin74sm.serv-host.org.ua.key;
  953. }
  954. server {
  955. server_name srv357022.serv-host.org.ua www.srv357022.serv-host.org.ua;
  956. listen 91.211.117.132;
  957. listen 91.211.117.132:443 ssl;
  958. disable_symlinks if_not_owner from=$root_path;
  959. set $root_path /var/www/srv357022/data/www/srv357022.serv-host.org.ua;
  960. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  961. root $root_path;
  962. access_log /var/www/nginx-logs/srv357022 isp;
  963. access_log /var/www/httpd-logs/srv357022.serv-host.org.ua.access.log ;
  964. error_page 404 = @fallback;
  965. }
  966. location / {
  967. proxy_pass http://91.211.117.132:81;
  968. proxy_redirect http://91.211.117.132:81/ /;
  969. proxy_set_header Host $host;
  970. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  971. proxy_set_header X-Forwarded-Proto $scheme;
  972. proxy_set_header X-Real-IP $remote_addr;
  973. }
  974. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  975. proxy_pass http://91.211.117.132:81;
  976. proxy_redirect http://91.211.117.132:81/ /;
  977. proxy_set_header Host $host;
  978. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  979. proxy_set_header X-Forwarded-Proto $scheme;
  980. proxy_set_header X-Real-IP $remote_addr;
  981. }
  982. location @fallback {
  983. proxy_pass http://91.211.117.132:81;
  984. proxy_set_header Host $host;
  985. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  986. proxy_set_header X-Forwarded-Proto $scheme;
  987. proxy_set_header X-Real-IP $remote_addr;
  988. }
  989. location ^~ /webstat/ {
  990. auth_basic "Restricted area";
  991. auth_basic_user_file /var/www/srv357022/data/etc/3547669.passwd;
  992. try_files $uri @fallback;
  993. }
  994. include /usr/local/ispmgr/etc/nginx.inc;
  995. ssl_certificate /var/www/httpd-cert/srv357022/srv357022.serv-host.org.ua.crt;
  996. ssl_certificate_key /var/www/httpd-cert/srv357022/srv357022.serv-host.org.ua.key;
  997. }
  998. server {
  999. server_name amx.serv-host.org.ua www.amx.serv-host.org.ua;
  1000. listen 91.211.117.132;
  1001. listen 91.211.117.132:443 ssl;
  1002. disable_symlinks if_not_owner from=$root_path;
  1003. set $root_path /var/www/amx/data/www/amx.serv-host.org.ua;
  1004. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  1005. root $root_path;
  1006. access_log /var/www/nginx-logs/amx isp;
  1007. access_log /var/www/httpd-logs/amx.serv-host.org.ua.access.log ;
  1008. error_page 404 = @fallback;
  1009. }
  1010. location / {
  1011. proxy_pass http://91.211.117.132:81;
  1012. proxy_redirect http://91.211.117.132:81/ /;
  1013. proxy_set_header Host $host;
  1014. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1015. proxy_set_header X-Forwarded-Proto $scheme;
  1016. proxy_set_header X-Real-IP $remote_addr;
  1017. }
  1018. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  1019. proxy_pass http://91.211.117.132:81;
  1020. proxy_redirect http://91.211.117.132:81/ /;
  1021. proxy_set_header Host $host;
  1022. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1023. proxy_set_header X-Forwarded-Proto $scheme;
  1024. proxy_set_header X-Real-IP $remote_addr;
  1025. }
  1026. location @fallback {
  1027. proxy_pass http://91.211.117.132:81;
  1028. proxy_set_header Host $host;
  1029. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1030. proxy_set_header X-Forwarded-Proto $scheme;
  1031. proxy_set_header X-Real-IP $remote_addr;
  1032. }
  1033. location ^~ /webstat/ {
  1034. auth_basic "Restricted area";
  1035. auth_basic_user_file /var/www/amx/data/etc/3548879.passwd;
  1036. try_files $uri @fallback;
  1037. }
  1038. include /usr/local/ispmgr/etc/nginx.inc;
  1039. ssl_certificate /var/www/httpd-cert/amx/amx.serv-host.org.ua.crt;
  1040. ssl_certificate_key /var/www/httpd-cert/amx/amx.serv-host.org.ua.key;
  1041. }
  1042. server {
  1043. server_name srv140200.serv-host.org.ua www.srv140200.serv-host.org.ua;
  1044. listen 91.211.117.132;
  1045. listen 91.211.117.132:443 ssl;
  1046. disable_symlinks if_not_owner from=$root_path;
  1047. set $root_path /var/www/srv1402000/data/www/srv140200.serv-host.org.ua;
  1048. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  1049. root $root_path;
  1050. access_log /var/www/nginx-logs/srv1402000 isp;
  1051. access_log /var/www/httpd-logs/srv140200.serv-host.org.ua.access.log ;
  1052. error_page 404 = @fallback;
  1053. }
  1054. location / {
  1055. proxy_pass http://91.211.117.132:81;
  1056. proxy_redirect http://91.211.117.132:81/ /;
  1057. proxy_set_header Host $host;
  1058. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1059. proxy_set_header X-Forwarded-Proto $scheme;
  1060. proxy_set_header X-Real-IP $remote_addr;
  1061. }
  1062. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  1063. proxy_pass http://91.211.117.132:81;
  1064. proxy_redirect http://91.211.117.132:81/ /;
  1065. proxy_set_header Host $host;
  1066. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1067. proxy_set_header X-Forwarded-Proto $scheme;
  1068. proxy_set_header X-Real-IP $remote_addr;
  1069. }
  1070. location @fallback {
  1071. proxy_pass http://91.211.117.132:81;
  1072. proxy_set_header Host $host;
  1073. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1074. proxy_set_header X-Forwarded-Proto $scheme;
  1075. proxy_set_header X-Real-IP $remote_addr;
  1076. }
  1077. location ^~ /webstat/ {
  1078. auth_basic "Restricted area";
  1079. auth_basic_user_file /var/www/srv1402000/data/etc/4325496.passwd;
  1080. try_files $uri @fallback;
  1081. }
  1082. include /usr/local/ispmgr/etc/nginx.inc;
  1083. ssl_certificate /var/www/httpd-cert/srv1402000/srv140200.serv-host.org.ua.crt;
  1084. ssl_certificate_key /var/www/httpd-cert/srv1402000/srv140200.serv-host.org.ua.key;
  1085. }
  1086. server {
  1087. server_name wot.serv-host.org.ua www.wot.serv-host.org.ua;
  1088. listen 91.211.117.132;
  1089. listen 91.211.117.132:443 ssl;
  1090. disable_symlinks if_not_owner from=$root_path;
  1091. set $root_path /var/www/wot/data/www/wot.serv-host.org.ua;
  1092. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  1093. root $root_path;
  1094. access_log /var/www/nginx-logs/wot isp;
  1095. access_log /var/www/httpd-logs/wot.serv-host.org.ua.access.log ;
  1096. error_page 404 = @fallback;
  1097. }
  1098. location / {
  1099. proxy_pass http://91.211.117.132:81;
  1100. proxy_redirect http://91.211.117.132:81/ /;
  1101. proxy_set_header Host $host;
  1102. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1103. proxy_set_header X-Forwarded-Proto $scheme;
  1104. proxy_set_header X-Real-IP $remote_addr;
  1105. }
  1106. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  1107. proxy_pass http://91.211.117.132:81;
  1108. proxy_redirect http://91.211.117.132:81/ /;
  1109. proxy_set_header Host $host;
  1110. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1111. proxy_set_header X-Forwarded-Proto $scheme;
  1112. proxy_set_header X-Real-IP $remote_addr;
  1113. }
  1114. location @fallback {
  1115. proxy_pass http://91.211.117.132:81;
  1116. proxy_set_header Host $host;
  1117. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1118. proxy_set_header X-Forwarded-Proto $scheme;
  1119. proxy_set_header X-Real-IP $remote_addr;
  1120. }
  1121. location ^~ /webstat/ {
  1122. auth_basic "Restricted area";
  1123. auth_basic_user_file /var/www/wot/data/etc/3026424.passwd;
  1124. try_files $uri @fallback;
  1125. }
  1126. include /usr/local/ispmgr/etc/nginx.inc;
  1127. ssl_certificate /var/www/httpd-cert/wot/wot.serv-host.org.ua.crt;
  1128. ssl_certificate_key /var/www/httpd-cert/wot/wot.serv-host.org.ua.key;
  1129. }
  1130. server {
  1131. server_name spark382.serv-host.org.ua www.spark382.serv-host.org.ua;
  1132. listen 91.211.117.132;
  1133. listen 91.211.117.132:443 ssl;
  1134. disable_symlinks if_not_owner from=$root_path;
  1135. set $root_path /var/www/spark382/data/www/spark382.serv-host.org.ua;
  1136. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  1137. root $root_path;
  1138. access_log /var/www/nginx-logs/spark382 isp;
  1139. access_log /var/www/httpd-logs/spark382.serv-host.org.ua.access.log ;
  1140. error_page 404 = @fallback;
  1141. }
  1142. location / {
  1143. proxy_pass http://91.211.117.132:81;
  1144. proxy_redirect http://91.211.117.132:81/ /;
  1145. proxy_set_header Host $host;
  1146. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1147. proxy_set_header X-Forwarded-Proto $scheme;
  1148. proxy_set_header X-Real-IP $remote_addr;
  1149. }
  1150. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  1151. proxy_pass http://91.211.117.132:81;
  1152. proxy_redirect http://91.211.117.132:81/ /;
  1153. proxy_set_header Host $host;
  1154. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1155. proxy_set_header X-Forwarded-Proto $scheme;
  1156. proxy_set_header X-Real-IP $remote_addr;
  1157. }
  1158. location @fallback {
  1159. proxy_pass http://91.211.117.132:81;
  1160. proxy_set_header Host $host;
  1161. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1162. proxy_set_header X-Forwarded-Proto $scheme;
  1163. proxy_set_header X-Real-IP $remote_addr;
  1164. }
  1165. location ^~ /webstat/ {
  1166. auth_basic "Restricted area";
  1167. auth_basic_user_file /var/www/spark382/data/etc/3023717.passwd;
  1168. try_files $uri @fallback;
  1169. }
  1170. include /usr/local/ispmgr/etc/nginx.inc;
  1171. ssl_certificate /var/www/httpd-cert/spark382/spark382.serv-host.org.ua.crt;
  1172. ssl_certificate_key /var/www/httpd-cert/spark382/spark382.serv-host.org.ua.key;
  1173. }
  1174. server {
  1175. server_name mon3.serv-host.org.ua www.mon3.serv-host.org.ua;
  1176. listen 91.211.117.132;
  1177. listen 91.211.117.132:443 ssl;
  1178. disable_symlinks if_not_owner from=$root_path;
  1179. set $root_path /var/www/mon3/data/www/mon3.serv-host.org.ua;
  1180. location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf)$ {
  1181. root $root_path;
  1182. access_log /var/www/nginx-logs/mon3 isp;
  1183. access_log /var/www/httpd-logs/mon3.serv-host.org.ua.access.log ;
  1184. error_page 404 = @fallback;
  1185. }
  1186. location / {
  1187. proxy_pass http://91.211.117.132:81;
  1188. proxy_redirect http://91.211.117.132:81/ /;
  1189. proxy_set_header Host $host;
  1190. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1191. proxy_set_header X-Forwarded-Proto $scheme;
  1192. proxy_set_header X-Real-IP $remote_addr;
  1193. }
  1194. location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
  1195. proxy_pass http://91.211.117.132:81;
  1196. proxy_redirect http://91.211.117.132:81/ /;
  1197. proxy_set_header Host $host;
  1198. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1199. proxy_set_header X-Forwarded-Proto $scheme;
  1200. proxy_set_header X-Real-IP $remote_addr;
  1201. }
  1202. location @fallback {
  1203. proxy_pass http://91.211.117.132:81;
  1204. proxy_set_header Host $host;
  1205. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  1206. proxy_set_header X-Forwarded-Proto $scheme;
  1207. proxy_set_header X-Real-IP $remote_addr;
  1208. }
  1209. location ^~ /webstat/ {
  1210. auth_basic "Restricted area";
  1211. auth_basic_user_file /var/www/mon3/data/etc/2621844.passwd;
  1212. try_files $uri @fallback;
  1213. }
  1214. include /usr/local/ispmgr/etc/nginx.inc;
  1215. ssl_certificate /var/www/httpd-cert/mon3/mon3.serv-host.org.ua.crt;
  1216. ssl_certificate_key /var/www/httpd-cert/mon3/mon3.serv-host.org.ua.key;
  1217. }
  1218. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement