2014-11-12 22:22:53 +01:00
|
|
|
location YNH_EXAMPLE_PATH {
|
|
|
|
# Path to source
|
|
|
|
alias YNH_EXAMPLE_ALIAS ;
|
|
|
|
# Example PHP configuration
|
|
|
|
index index.php;
|
|
|
|
try_files $uri $uri/ index.php;
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
2015-07-04 15:04:51 +02:00
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
2014-11-12 22:22:53 +01:00
|
|
|
}
|
2015-08-26 22:30:15 +02:00
|
|
|
location YNH_EXAMPLE_PATH/data/medias{
|
2014-11-23 18:41:12 +01:00
|
|
|
allow all;
|
|
|
|
}
|
|
|
|
location YNH_EXAMPLE_PATH/data {
|
|
|
|
deny all;
|
|
|
|
return 403;
|
|
|
|
}
|
2014-11-12 22:22:53 +01:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|