Alias for NGINX?

136 Views Asked by At

I currently have Rainloop working with mail.mydomain.com without issue. Now I want to install zpush and put rainloop as a alias, ex: mail.mydomain.com/rainloop and leave zpush as mail.mydomain.com (for the auto discovery). This is what I have so far

server {
   server_name mail.mydomain.com;
   root    /var/www/zpush;
   access_log /var/www/rainloop/logs/access.log;
   error_log /var/www/rainloop/logs/error.log;
   index index.php;

   location / {
       try_files $uri /index.php?$query_string;
   }

   location ~ \.php$ {
       fastcgi_index index.php;
       # fastcgi_param HTTPS on;
       fastcgi_split_path_info ^(.+\.php)(.*)$;
       fastcgi_keep_conn on;
       include /etc/nginx/fastcgi_params;
       fastcgi_pass unix:/var/run/php5-fpm.sock;
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
       # Z-Push Ping command will be alive for 470s, but be safe
    fastcgi_read_timeout 630;

   }

   location ~ /\.ht {
       deny all;
   }

   location ^~ /data {
     deny all;
   }

   location /Microsoft-Server-ActiveSync {
    rewrite ^(.*)$  /index.php last;
   }
   location /rainloop {
    alias /var/www/rainloop/;
     index index.php;
     }

   listen 443 ssl; # managed by Certbot
   ssl_certificate /etc/letsencrypt/live/mail.mydomain.com/fullchain.pem; # managed by Certbot
   ssl_certificate_key /etc/letsencrypt/live/mail.mydomain.com/privkey.pem; # managed by Certbot
   include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
   ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot


   ssl_trusted_certificate /etc/letsencrypt/live/mail.mydomain.com/chain.pem; # managed by Certbot
   ssl_stapling on; # managed by Certbot
   ssl_stapling_verify on; # managed by Certbot

}

Not sure what I'm doing wrong or maybe I'm missing something? Keep getting the the 403

1

There are 1 best solutions below

0
On

SOLVED IT: needed to create a symbolic link

     ln -s /var/www/rainloop  /var/www/zpush