1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gogs_ynh.git synced 2024-09-03 20:36:23 +02:00
This commit is contained in:
ericgaspar 2020-11-20 11:22:58 +01:00
parent 98ea085760
commit 8134c875c8
No known key found for this signature in database
GPG key ID: 574F281483054D44
2 changed files with 12 additions and 39 deletions

View file

@ -6,10 +6,16 @@ location __PATH__/ {
rewrite ^ https://$server_name$request_uri? permanent;
}
proxy_pass http://localhost:__PORT__;
proxy_set_header Host $host;
proxy_buffering off;
fastcgi_param REMOTE_USER $remote_user;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
rewrite ^__PATH__/gogs/(.*) /$1 break;
rewrite ^__PATH__/gogs$ /$1 break;
proxy_pass http://localhost:__PORT__;
proxy_read_timeout 90;
client_max_body_size 200M;
# Include SSOWAT user panel.

View file

@ -2,11 +2,6 @@
# SET ALL CONSTANTS
#=================================================
DATADIR="/home/$app"
REPO_PATH="$DATADIR/repositories"
DATA_PATH="$DATADIR/data"
# Detect the system architecture to download the right tarball
# NOTE: `uname -m` is more accurate and universal than `arch`
# See https://en.wikipedia.org/wiki/Uname
@ -25,34 +20,6 @@ ynh_detect_arch(){
echo $architecture
}
# Check the architecture
#
# example: architecture=$(ynh_detect_arch)
#
# usage: ynh_detect_arch
#
# Requires YunoHost version 2.2.4 or higher.
# ynh_detect_arch(){
# local architecture
# if [ -n "$(uname -m | grep arm64)" ] || [ -n "$(uname -m | grep aarch64)" ]; then
# architecture="arm64"
# elif [ -n "$(uname -m | grep 86)" ]; then
# architecture="i386"
# elif [ -n "$(uname -m | grep 64)" ]; then
# architecture="x86-64"
# elif [ -n "$(uname -m | grep armv7)" ]; then
# architecture="armv7"
# elif [ -n "$(uname -m | grep armv6)" ]; then
# architecture="armv6"
# elif [ -n "$(uname -m | grep armv5)" ]; then
# architecture="armv5"
# else
# architecture="unknown"
# fi
# echo $architecture
# }
#=================================================
# DEFINE ALL COMMON FONCTIONS
#=================================================