Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It shall NOT be edited by hand.
Software to manage scholarly journals

[![🌐 Official app website](https://img.shields.io/badge/Official_app_website-darkgreen?style=for-the-badge)](https://pkp.sfu.ca/software/ojs)
[![Version: 3.5.0-3~ynh1](https://img.shields.io/badge/Version-3.5.0--3~ynh1-rgb(18,138,11)?style=for-the-badge)](https://ci-apps.yunohost.org/ci/apps/ojs/)
[![Version: 3.5.0-4~ynh1](https://img.shields.io/badge/Version-3.5.0--4~ynh1-rgb(18,138,11)?style=for-the-badge)](https://ci-apps.yunohost.org/ci/apps/ojs/)

<div align="center">
<a href="https://apps.yunohost.org/app/ojs"><img height="100px" src="https://github.com/YunoHost/yunohost-artwork/raw/refs/heads/main/badges/neopossum-badges/badge_more_info_on_the_appstore.svg"/></a>
Expand Down
7 changes: 6 additions & 1 deletion conf/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ location __PATH__/ {
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_read_timeout 600s;
fastcgi_read_timeout 900s;

# Buffering to survive heavy requests
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
fastcgi_busy_buffers_size 64k;

}
}
Expand Down
6 changes: 3 additions & 3 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "OJS"
description.en = "Software to manage scholarly journals"
description.fr = "Logiciel pour gérer des revues scientifiques"

version = "3.5.0-3~ynh1"
version = "3.5.0-4~ynh1"

maintainers = ["DeMiro5001"]

Expand Down Expand Up @@ -206,8 +206,8 @@ ram.runtime = "50M"
[resources.sources]

[resources.sources.main]
url = "https://pkp.sfu.ca/ojs/download/ojs-3.5.0-3.tar.gz"
sha256 = "af501e4f8d99af84d47c26eca3347400d94b3ace08806b5e30a7b6d0ce91e3e5"
url = "https://pkp.sfu.ca/ojs/download/ojs-3.5.0-4.tar.gz"
sha256 = "e168820b5e523520dc777798df2f78ca87dff36bf698ca3ae5cb32d07fc51346"

[resources.system_user]
allow_email = true
Expand Down
Loading