34 lines
946 B
Django/Jinja
34 lines
946 B
Django/Jinja
server {
|
|
|
|
server_name icinga.keiran.us;
|
|
|
|
rewrite ^/$ http://icinga.keiran.us/icingaweb2 permanent;
|
|
|
|
location ~ ^/icingaweb2/index\.php(.*)$ {
|
|
# fastcgi_pass 127.0.0.1:9000;
|
|
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME /usr/share/icingaweb2/public/index.php;
|
|
fastcgi_param ICINGAWEB_CONFIGDIR /etc/icingaweb2;
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
}
|
|
|
|
location ~ ^/icingaweb2(.+)? {
|
|
alias /usr/share/icingaweb2/public;
|
|
index index.php;
|
|
try_files $1 $uri $uri/ /icingaweb2/index.php$is_args$args;
|
|
}
|
|
|
|
location ~ ^/ccfc/$ {
|
|
auth_basic "Login";
|
|
auth_basic_user_file /var/www/htpasswd_ccfc;
|
|
fastcgi_pass unix://var/run/php/php7.0-fpm.sock;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME /var/www/ccfc/index.php;
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
}
|
|
|
|
}
|