mirror of
https://github.com/YunoHost-Apps/peertube_ynh.git
synced 2024-09-03 19:56:29 +02:00
7 lines
201 B
Bash
7 lines
201 B
Bash
#!/bin/bash
|
|
|
|
pending_conf=$4
|
|
if [[ "$1" == "pre" ]]
|
|
then
|
|
sed --in-place "s/X-Frame-Options : SAMEORIGIN/X-Frame-Options : ALLOWALL/g" "${pending_conf}/../nginx/etc/nginx/conf.d/__DOMAIN__.conf"
|
|
fi
|