mirror of
https://github.com/YunoHost-Apps/codimd_ynh.git
synced 2024-09-03 18:16:32 +02:00
Fix
This commit is contained in:
parent
3bb71d675b
commit
98b38573b0
3 changed files with 8 additions and 6 deletions
|
@ -3,8 +3,6 @@
|
|||
[](https://dash.yunohost.org/appci/app/codimd)  
|
||||
[](https://install-app.yunohost.org/?app=codimd)
|
||||
|
||||
> :warning: Le projet CodiMD a été renommé HedgeDoc. Le package YunoHost pour HedgeDoc est désormais hébergé à cette adresse https://github.com/YunoHost-Apps/hedgedoc_ynh. codimd_ynh restera à la version 1.6.0 et ne sera plus mis à jour.
|
||||
|
||||
*[Read this readme in english.](./README.md)*
|
||||
|
||||
> *Ce package vous permet d'installer CodiMD rapidement et simplement sur un serveur YunoHost.
|
||||
|
|
|
@ -17,9 +17,13 @@ location ^~ __PATH__/ {
|
|||
proxy_set_header Upgrade $http_upgrade;
|
||||
|
||||
# setup for image upload
|
||||
client_max_body_size 256M;
|
||||
proxy_max_temp_file_size 1024M;
|
||||
|
||||
client_max_body_size 8192m;
|
||||
proxy_max_temp_file_size 8192m;
|
||||
|
||||
# adjust proxy buffer setting
|
||||
proxy_buffers 8 32k;
|
||||
proxy_buffer_size 32k;
|
||||
proxy_busy_buffers_size 64k;
|
||||
proxy_read_timeout 300;
|
||||
proxy_connect_timeout 300;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[Unit]
|
||||
Description=CodiMD: collaborative Markdown notes
|
||||
Documentation=https://github.com/codimd/server
|
||||
Documentation=https://github.com/hackmdio/codimd
|
||||
After=network.target postgresql.service
|
||||
|
||||
[Service]
|
||||
|
|
Loading…
Add table
Reference in a new issue