From 46a4579b76d15c00a85f214170c9a3ef64cceed9 Mon Sep 17 00:00:00 2001 From: magikcypress Date: Sat, 2 May 2015 18:28:17 +0200 Subject: [PATCH] Correction nginc conf pour ecrire --- README.md | 8 ++++- conf/nginx.conf | 78 +++++++++++++++++++++++++++++++------------------ scripts/install | 7 ++--- 3 files changed, 60 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index f8dc19e..e2b98d8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ # SPIP_ynh -## Spip for YunoHost \ No newline at end of file +## Spip for YunoHost + +### Configuration + +1) Start url https://domaine.tld/spip/ecrire +2) Check SQL password /var/www/spip/tmp/connect.txt +3) Delete SQL password file \ No newline at end of file diff --git a/conf/nginx.conf b/conf/nginx.conf index c18c51e..55278a1 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,30 +1,52 @@ location PATHTOCHANGE { - alias ALIASTOCHANGE; - if ($scheme = http) { - rewrite ^ https://$server_name$request_uri? permanent; - } - index spip.php; - if (!-e $request_filename) - { - rewrite ^(.+)$ PATHTOCHANGE/spip.php?page=$1 last; - } - client_max_body_size 30m; - location ~^/(tmp|config)/{ - return 403; - } - location / { - try_files $uri $uri/ /spip.php?q=$uri&$args; - } - location ~ [^/]\.php(/|$) { - fastcgi_split_path_info ^(.+?\.php)(/.*)$; - fastcgi_pass unix:/var/run/php5-fpm-spip.sock; - fastcgi_index spip.php; - include fastcgi_params; - fastcgi_param REMOTE_USER $remote_user; - fastcgi_param PATH_INFO $fastcgi_path_info; - fastcgi_param SCRIPT_FILENAME $request_filename; - } + alias ALIASTOCHANGE; + if ($scheme = http) { + rewrite ^ https://$server_name$request_uri? permanent; + } + index index.php spip.php; + if (!-e $request_filename) { + rewrite ^(.+)$ PATHTOCHANGE/spip.php?page=$1 last; + } + client_max_body_size 30m; + location ~^/(tmp|config)/{ + return 403; + } + location ~* \.(jpg|jpeg|gif|css|png|js|ico|swf|mp3|pdf)$ { + # Le contenu statique, est signalé au navigateur comme étant + # à garder en cache une semaine. Si il y a un proxy sur la + # route, celui-ci est autorisé à faire une copie et à la + # cacher. + expires 1w; + add_header Cache-Control public; + } + location /spip { + # La configuration globale du site. Tout ce qui ne va dans + # aucune autre location vas ici. - # Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; -} \ No newline at end of file + # Quelques fichiers standards générés par spip et devant être + # à des URL précises. + rewrite ^/([^/]*)/robots\.txt$ /spip.php?page=robots.txt last; + rewrite ^/([^/]*)/favicon\.ico$ /spip.php?page=favicon.ico last; + rewrite ^/([^/]*)/sitemap\.xml$ /spip.php?page=sitemap.xml last; + rewrite ^/([^/]*)/mobile\.html$ /spip.php?page=mobile_uk last; + + try_files $uri $uri/ /spip.php?q=$uri&$args; + } + location ~ [^/]\.php(/|$) { + fastcgi_split_path_info ^(.+?\.php)(/.*)$; + fastcgi_pass unix:/var/run/php5-fpm-spip.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; + + set $ecrire 0; + if ($uri ~ ^/ecrire.*) { + set $ecrire 1; + } + } + + # Include SSOWAT user panel. + include conf.d/yunohost_panel.conf.inc; +} diff --git a/scripts/install b/scripts/install index 72753f6..c7aa1a8 100644 --- a/scripts/install +++ b/scripts/install @@ -4,8 +4,6 @@ domain=$1 path=$2 admin_spip=$3 -language=$4 -is_public=$5 # Check if admin exists sudo yunohost user list --json | grep -q "\"username\": \"$admin_spip\"" @@ -14,8 +12,6 @@ if [[ ! $? -eq 0 ]]; then exit 1 fi sudo yunohost app setting spip admin -v $admin_spip -sudo yunohost app setting spip language -v $language -sudo yunohost app setting spip is_public -v $is_public # Check domain/path availability sudo yunohost app checkurl $domain$path -a spip @@ -52,6 +48,9 @@ sudo cp ../conf/php-fpm.conf $finalphpconf sudo chown root: $finalphpconf sudo chmod 644 $finalphpconf +# Check sql pwd +echo $db_pwd > /var/www/spip/tmp/connect.txt + # Reload Nginx and regenerate SSOwat conf sudo service php5-fpm restart sudo service nginx reload