mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
update to movim upstream, block ?infos
This commit is contained in:
parent
31a1ba6b0b
commit
fb8c0257ad
5 changed files with 16 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
**Changelog**
|
**Changelog**
|
||||||
|
|
||||||
|
2.0.5 2017-03-15
|
||||||
|
- Update to movim 0.11alpha1 git2017-03-15
|
||||||
|
- Fix /?infos public access issue.
|
||||||
|
|
||||||
2.0.4 2017-02-09
|
2.0.4 2017-02-09
|
||||||
- Update to movim 0.10 git2017-02-09
|
- Update to movim 0.10 git2017-02-09
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ Movim is a decentralized social network, written in PHP and HTML5 and based on t
|
||||||
|
|
||||||
It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt.
|
It is recommended to use a "valid" certificate to use Movim, auto-signed is sometimes problematic. You might want to take a look a StartSSL or Let's Encrypt.
|
||||||
|
|
||||||
Provided Movim version : 0.10 git2017-02-09
|
Provided Movim version : 0.11alpha1 git2017-03-15
|
||||||
|
|
||||||
Please read CHANGELOG.
|
Please read CHANGELOG.
|
||||||
|
|
||||||
|
|
3
TODO
Normal file
3
TODO
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
-vhost nginx
|
||||||
|
https://src386.org/movim/?infos
|
||||||
|
correction bug patch
|
|
@ -9,6 +9,11 @@ location PATHTOCHANGE {
|
||||||
try_files $uri $uri/ /index.php;
|
try_files $uri $uri/ /index.php;
|
||||||
|
|
||||||
location ~ [^/]\.php(/|$) {
|
location ~ [^/]\.php(/|$) {
|
||||||
|
|
||||||
|
if ($request_uri ~ "\/movim\/\?infos") {
|
||||||
|
return 403;
|
||||||
|
}
|
||||||
|
|
||||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||||
fastcgi_pass unix:/var/run/php5-fpm-movim.sock;
|
fastcgi_pass unix:/var/run/php5-fpm-movim.sock;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
|
@ -48,6 +53,8 @@ location ^~ /movim/config/ {
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location ^~ /movim/?infos
|
||||||
|
|
||||||
# Include SSOWAT user panel.
|
# Include SSOWAT user panel.
|
||||||
#include conf.d/yunohost_panel.conf.inc;
|
#include conf.d/yunohost_panel.conf.inc;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
GIT_REPO="https://github.com/movim/movim"
|
GIT_REPO="https://github.com/movim/movim"
|
||||||
|
|
||||||
# Commit to checkout
|
# Commit to checkout
|
||||||
HEAD_COMMIT="00ef035b92ae78cce34521deee7a12634444878d"
|
HEAD_COMMIT="be53a7412454c8269e08f8c333d72c2c5b623c9e"
|
||||||
|
|
||||||
# Source code destination directory
|
# Source code destination directory
|
||||||
DESTDIR="/var/www/movim"
|
DESTDIR="/var/www/movim"
|
||||||
|
|
Loading…
Add table
Reference in a new issue