nginx serving php for download (previously: nginx multiple location alias 404)
- by torsten
Im having issues with the alias location in the following configuration
server {
listen 80;
server_name localhost;
root /srv/http/share;
index index.php;
include php.conf;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location /phpmemcachedadmin {
alias…