subdiretório nginx para subdomínio icingaweb2

2

Atualmente tenho o icinga2 configurado com o novo icingaweb2 ui. o padrão é a subpasta / icingaweb da seguinte forma:

location ~ ^/icingaweb/index\.php(.*)$ {
    # fastcgi_pass 127.0.0.1:9000;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME /usr/share/icingaweb/public/index.php;
    fastcgi_param ICINGAWEB_CONFIGDIR /etc/icingaweb;
}

location ~ ^/icingaweb(.+)? {
    alias /usr/share/icingaweb/public;
    index index.php;
    try_files $1 $uri $uri/ /icingaweb/index.php$is_args$args;
}

Se eu alterar o primeiro bloco de localização para:

location / {

mostra a página de login menos todos os css.

Como posso fazer isso funcionar em um subdomínio ex. icinga.example.com?

Para o registro, o restante do arquivo que eu conheço está formatado corretamente, como server_name, listen root, etc.

Obrigado antecipadamente.

Bloco do servidor conforme solicitado:

server {

    listen 80;
    server_name icinga.example.com;
    root /usr/share/icingaweb/public;

    location ~ ^/icingaweb/index\.php(.*)$ {
        # fastcgi_pass 127.0.0.1:9000;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME /usr/share/icingaweb/public/index.php;
        fastcgi_param ICINGAWEB_CONFIGDIR /etc/icingaweb;
    }

    location ~ ^/icingaweb(.+)? {
        alias /usr/share/icingaweb/public;
        index index.php;
        try_files $1 $uri $uri/ /icingaweb/index.php$is_args$args;
    }
} 
    
por Eddie Garcia 19.12.2014 / 03:18

1 resposta

1

Encontrou uma solução aqui - Falha de redirecionamento do Nginx para icingaweb2

A linha de reescrita no segundo bloco de localização é o que faz a mágica acontecer.

Algo como isso deve funcionar no seu caso:

location ~ ^/index\.php(.*)$ {
  fastcgi_pass unix:/var/run/php5-fpm.sock;
  fastcgi_index index.php;
  include fastcgi_params;
  fastcgi_param SCRIPT_FILENAME /usr/share/icingaweb/public/index.php;
  fastcgi_param ICINGAWEB_CONFIGDIR /etc/icingaweb;
}

location ~ ^/(.*)? {
 alias /usr/share/icingaweb/public;
 index index.php;
 rewrite ^/$ /dashboard;
 try_files $1 $uri $uri/ /index.php$is_args$args;
}
    
por 03.11.2016 / 23:25