1
0
Fork 0
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:
Anmol 2017-07-19 01:43:40 +05:30
parent 1a2b87b072
commit 766aee3a43
2 changed files with 48 additions and 18 deletions

View file

@ -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;
# 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(/|$) { location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_pass unix:/var/run/php5-fpm-my_webapp.sock;
fastcgi_index index.php; fastcgi_index index.php;
include fastcgi_params; include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user; fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename; 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 SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc; include conf.d/yunohost_panel.conf.inc;
} }

View file

@ -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