2017-07-18 12:21:08 +02:00
|
|
|
location __PATH__ {
|
2017-07-18 22:13:40 +02:00
|
|
|
alias __FINALPATH__/;
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
|
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2017-07-18 13:34:24 +02:00
|
|
|
|
2017-07-18 22:13:40 +02:00
|
|
|
# Default indexes and catch-all
|
|
|
|
index index.html index.php;
|
|
|
|
try_files $uri $uri/ /index.php?$args;
|
|
|
|
|
|
|
|
# Prevent useless logs
|
|
|
|
location = /favicon.ico {
|
|
|
|
log_not_found off;
|
|
|
|
access_log off;
|
|
|
|
}
|
|
|
|
location = /robots.txt {
|
|
|
|
allow all;
|
|
|
|
log_not_found off;
|
|
|
|
access_log off;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Deny access to hidden files and directories
|
|
|
|
location ~ ^/(.+/|)\.(?!well-known\/) {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Execute and serve PHP files
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
2017-07-18 22:15:31 +02:00
|
|
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
2017-07-18 22:13:40 +02:00
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
# .htaccess file from Hubzilla converted using http://winginx.com/en/htaccess
|
|
|
|
location ~ "(^|/)\.git"
|
|
|
|
{
|
|
|
|
return 403;
|
|
|
|
}
|
|
|
|
autoindex off;
|
|
|
|
location / { if (!-e $request_filename)
|
|
|
|
{
|
|
|
|
rewrite ^(.*)$ /index.php?pagename=$1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2015-02-16 23:19:37 +01:00
|
|
|
}
|