1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cac-proxy_ynh.git synced 2024-09-03 18:16:07 +02:00

Merge pull request #17 from YunoHost-Apps/main

Better support for Cookie
This commit is contained in:
Gérard Collin 2023-11-18 10:35:59 +01:00 committed by GitHub
commit 74c10b73a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 7 deletions

View file

@ -27,7 +27,7 @@ With Cookie Aware Cors Proxy, you can call a website not supporting CORS from yo
- Two engines: a lightweight and one based on chrome to support websites running javascript
**Shipped version:** 1.2.0~ynh2
**Shipped version:** 1.2.1~ynh1
## Screenshots
@ -43,7 +43,7 @@ With Cookie Aware Cors Proxy, you can call a website not supporting CORS from yo
## Documentation and resources
* Upstream app code repository: <https://github.com/gcollin/cookie-aware-cors-proxy>
* YunoHost documentation for this app: <https://yunohost.org/app_cac-proxy>
* YunoHost Store: <https://apps.yunohost.org/app/cac-proxy>
* Report a bug: <https://github.com/YunoHost-Apps/cac-proxy_ynh/issues>
## Developer info

View file

@ -27,7 +27,7 @@ With Cookie Aware Cors Proxy, you can call a website not supporting CORS from yo
- Two engines: a lightweight and one based on chrome to support websites running javascript
**Version incluse :** 1.2.0~ynh2
**Version incluse :** 1.2.1~ynh1
## Captures décran
@ -43,7 +43,7 @@ With Cookie Aware Cors Proxy, you can call a website not supporting CORS from yo
## Documentations et ressources
* Dépôt de code officiel de lapp : <https://github.com/gcollin/cookie-aware-cors-proxy>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_cac-proxy>
* YunoHost Store: <https://apps.yunohost.org/app/cac-proxy>
* Signaler un bug : <https://github.com/YunoHost-Apps/cac-proxy_ynh/issues>
## Informations pour les développeurs

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/gcollin/cookie-aware-cors-proxy/releases/download/v1.2.0/cookie-aware-cors-proxy.tgz
SOURCE_SUM=4bd56d8cb767207dd391b2de6cafd0dcac1595c6435f5bc305728241b7512296
SOURCE_URL=https://github.com/gcollin/cookie-aware-cors-proxy/releases/download/v1.2.1/cookie-aware-cors-proxy.tgz
SOURCE_SUM=1eec01aab716c78007c0cd0df81612b192bf38279b88ee2168ee7579a36ce967
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -7,6 +7,19 @@ location __PATH__/ {
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
# tips by zonetuto.fr #
# avoid error upstream sent too big header
# fastcgi buffers for php-fpm #
fastcgi_buffers 16 32k;
fastcgi_buffer_size 64k;
fastcgi_busy_buffers_size 64k;
# nginx buffers #
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
# Include SSOWAT user panel.
# include conf.d/yunohost_panel.conf.inc;
}

View file

@ -6,7 +6,7 @@
"en": "An advanced https proxy allowing you to call other websites from your own web application.",
"fr": "Un proxy https avancé vous permettant d'appeler d'autres sites depuis votre propre application web."
},
"version": "1.2.0~ynh2",
"version": "1.2.1~ynh1",
"url": "https://github.com/gcollin/cookie-aware-cors-proxy",
"upstream": {
"license": "MIT",