1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/penpot_ynh.git synced 2024-09-03 19:56:56 +02:00

Fixed gfonts.

This commit is contained in:
orhtej2 2024-02-11 19:59:48 +01:00
parent 93c69d8d5a
commit 43ce042f0f
2 changed files with 10 additions and 2 deletions

View file

@ -28,6 +28,7 @@ location /assets {
} }
location /internal/gfonts/css { location /internal/gfonts/css {
resolver 8.8.8.8 ipv6=off valid=30s;
proxy_pass https://fonts.googleapis.com/css?$args; proxy_pass https://fonts.googleapis.com/css?$args;
proxy_hide_header Access-Control-Allow-Origin; proxy_hide_header Access-Control-Allow-Origin;
proxy_hide_header Cross-Origin-Resource-Policy; proxy_hide_header Cross-Origin-Resource-Policy;
@ -71,6 +72,7 @@ location /ws/notifications {
location / { location / {
location ~ ^/internal/gfonts/font/(?<font_file>.+) { location ~ ^/internal/gfonts/font/(?<font_file>.+) {
resolver 8.8.8.8 ipv6=off valid=30s;
proxy_pass https://fonts.gstatic.com/s/$font_file; proxy_pass https://fonts.gstatic.com/s/$font_file;
proxy_hide_header Access-Control-Allow-Origin; proxy_hide_header Access-Control-Allow-Origin;

View file

@ -42,6 +42,14 @@ ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./d
#================================================= #=================================================
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1 ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
# Use logrotate to manage application logfile(s)
mkdir -p /var/log/$app
touch /var/log/$app/$app-backend.log
touch /var/log/$app/$app-exporter.log
chown -R $app: /var/log/$app
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_restore_file --origin_path="/etc/systemd/system/$app-backend.service" ynh_restore_file --origin_path="/etc/systemd/system/$app-backend.service"
@ -54,8 +62,6 @@ systemctl enable $app-exporter.service --quiet
yunohost service add $app-exporter --log="/var/log/$app/$app-exporter.log" yunohost service add $app-exporter --log="/var/log/$app/$app-exporter.log"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#================================================= #=================================================
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE # RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
#================================================= #=================================================