Advertisement
Guest User

Untitled

a guest
May 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 1.37 KB | None | 0 0
  1. server_name hem.vku.local *.hem.vku.local;
  2.         root /home/echoes/dev/projects/oncologyuniversity/www_hem;
  3.         client_max_body_size 100m;
  4.         include "include/yii.conf";
  5.         include "include/ref.conf";
  6.  
  7.         error_log /var/log/nginx/hem.vku.error.log;
  8.  
  9.         location ~ \.php$ {
  10.             fastcgi_pass 127.0.0.1:9000;
  11.             include fastcgi.conf;
  12.         }
  13.  
  14.         location ~ /\.ht {
  15.             deny  all;
  16.         }
  17.     }
  18.  
  19.     server {
  20.         server_name scd.hem.vku.local;
  21.         root /home/echoes/dev/projects/oncologyuniversity/www_seg;
  22.         client_max_body_size 100m;
  23.         include "include/yii.conf";
  24.         include "include/ref.conf";
  25.  
  26.         error_log /var/log/nginx/scd.hem.error.log;
  27.  
  28.         location ~ \.php$ {
  29.             fastcgi_pass 127.0.0.1:9000;
  30.             include fastcgi.conf;
  31.         }
  32.  
  33.         location ~ /\.ht {
  34.             deny  all;
  35.         }
  36.     }
  37.  
  38.     server {
  39.         server_name mint.hem.vku.local;
  40.         root /home/echoes/dev/projects/oncologyuniversity/www_mint;
  41.         client_max_body_size 100m;
  42.         include "include/yii.conf";
  43.         include "include/ref.conf";
  44.  
  45.         error_log /var/log/nginx/hem.mint.error.log;
  46.  
  47.         location ~ \.php$ {
  48.             fastcgi_pass 127.0.0.1:9000;
  49.             include fastcgi.conf;
  50.         }
  51.  
  52.         location ~ /\.ht {
  53.             deny  all;
  54.         }
  55.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement