mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
changed the nginx.conf so that .htaccess has write access
This commit is contained in:
parent
1a2b87b072
commit
766aee3a43
2 changed files with 48 additions and 18 deletions
|
@ -1,24 +1,54 @@
|
||||||
location __PATH__ {
|
location __PATH__ {
|
||||||
alias __FINALPATH__;
|
alias __FINALPATH__/;
|
||||||
client_max_body_size 10G;
|
|
||||||
index index.php;
|
|
||||||
|
|
||||||
if ($scheme = http) {
|
if ($scheme = http) {
|
||||||
rewrite ^ https://$server_name$request_uri? permanent;
|
rewrite ^ https://$server_name$request_uri? permanent;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Example PHP configuration
|
# Default indexes and catch-all
|
||||||
index index.php index.html;
|
index index.html index.php;
|
||||||
try_files $uri $uri/ index.php;
|
try_files $uri $uri/ /index.php?$args;
|
||||||
location ~ [^/]\.php(/|$) {
|
|
||||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
# Prevent useless logs
|
||||||
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
location = /favicon.ico {
|
||||||
fastcgi_index index.php;
|
log_not_found off;
|
||||||
include fastcgi_params;
|
access_log off;
|
||||||
fastcgi_param REMOTE_USER $remote_user;
|
}
|
||||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
location = /robots.txt {
|
||||||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
allow all;
|
||||||
}
|
log_not_found off;
|
||||||
# Include SSOWAT user panel.
|
access_log off;
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
}
|
||||||
|
|
||||||
|
# Deny access to hidden files and directories
|
||||||
|
location ~ ^/(.+/|)\.(?!well-known\/) {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Execute and serve PHP files
|
||||||
|
location ~ [^/]\.php(/|$) {
|
||||||
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||||
|
fastcgi_pass unix:/var/run/php5-fpm-my_webapp.sock;
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -131,7 +131,7 @@ sudo cp ../conf/poller-cron /etc/cron.d/$app
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
if [ $is_public -eq 0 ]
|
if [ $is_public -eq 0 ]
|
||||||
then # Remove the public access
|
then # Remove the public ac https://yourhostname.tld/install/testrewrite acess
|
||||||
ynh_app_setting_delete $app skipped_uris
|
ynh_app_setting_delete $app skipped_uris
|
||||||
fi
|
fi
|
||||||
# Make app public if necessary
|
# Make app public if necessary
|
||||||
|
|
Loading…
Reference in a new issue