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

[enh] Rewrite scripts and app to offer an SFTP access instead

This commit is contained in:
Jérôme Lebleu 2016-05-14 19:24:39 +02:00
parent ffb503f463
commit 66225a1fe5
7 changed files with 220 additions and 307 deletions

View file

@ -1,4 +1,17 @@
Custom Webapp Custom Webapp
------------- -------------
Empty App with a file access to the web directory. Empty application with SFTP access to the Web directory.
It can also create a MySQL database. In that case, the connection details
will be stored in the file `db_accesss.txt` located in the root folder of
the SFTP user.
## TODO
* Update `upgrade` script and manage upgrading from current official app
* Update `backup` and `restore` scripts
## Links
**YunoHost**: https://yunohost.org/

View file

@ -1,13 +1,13 @@
location LOCATIONTOCHANGE { location {LOCATION} {
alias ALIASTOCHANGEfiles/; alias {DESTDIR}/www;
index index.php index.html index.htm; if ($scheme = http) {
default_type text/html; rewrite ^ https://$server_name$request_uri? permanent;
}
client_max_body_size 1G; index index.html index.php ;
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) { location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm-NAMETOCHANGE.sock; fastcgi_pass unix:/var/run/php5-fpm-{POOLNAME}.sock;
fastcgi_index index.php; fastcgi_index index.php;
include fastcgi_params; include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user; fastcgi_param REMOTE_USER $remote_user;
@ -18,30 +18,3 @@ location LOCATIONTOCHANGE {
# Include SSOWAT user panel. # Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc; include conf.d/yunohost_panel.conf.inc;
} }
# Admin location - DO NOT EDIT
location PATHTOCHANGE/admin/_assets {
alias /var/www/my_webapp/_assets/;
}
location PATHTOCHANGE/admin {
alias /var/www/my_webapp/;
client_max_body_size 10G;
location ~ ^PATHTOCHANGE/admin$ {
rewrite ^(.*) $1/ redirect;
}
location ~ ^PATHTOCHANGE/admin/ {
fastcgi_split_path_info ^(PATHTOCHANGE/admin)(/?.*)$;
fastcgi_pass unix:/var/run/php5-fpm-NAMETOCHANGE.sock;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME ALIASTOCHANGEadmin.php;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}

View file

@ -1,242 +1,71 @@
; Start a new pool named 'www'. [{POOLNAME}]
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[NAMETOCHANGE]
; Per pool prefix
; It only applies on the following directives:
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
; - 'chdir'
; - 'php_values'
; - 'php_admin_values'
; When not set, the global prefix (or /usr) applies instead.
; Note: This directive can also be relative to the global prefix.
; Default Value: none
;prefix = /path/to/pools/$pool
; The address on which to accept FastCGI requests. ; The address on which to accept FastCGI requests.
; Valid syntaxes are: listen = /var/run/php5-fpm-{POOLNAME}.sock
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
; a specific port;
; 'port' - to listen on a TCP socket to all addresses on a
; specific port;
; '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = /var/run/php5-fpm-NAMETOCHANGE.sock
; Set listen(2) backlog. A value of '-1' means unlimited. ; Set permissions for unix socket, if one is used.
; Default Value: 128 (-1 on FreeBSD and OpenBSD)
;listen.backlog = -1
; List of ipv4 addresses of FastCGI clients which are allowed to connect.
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address
; must be separated by a comma. If this value is left blank, connections will be
; accepted from any ip address.
; Default Value: any
;listen.allowed_clients = 127.0.0.1
; Set permissions for unix socket, if one is used. In Linux, read/write
; permissions must be set in order to allow connections from a web server. Many
; BSD-derived systems allow connections regardless of permissions.
; Default Values: user and group are set as the running user
; mode is set to 0666
listen.owner = www-data listen.owner = www-data
listen.group = www-data listen.group = www-data
listen.mode = 0600 listen.mode = 0600
; Unix user/group of processes ; Unix user/group of processes.
; Note: The user is mandatory. If the group is not set, the default user's group user = {USER}
; will be used.
user = www-data
group = www-data group = www-data
; Choose how the process manager will control the number of child processes. ; Choose how the process manager will control the number of child processes.
; Possible Values:
; static - a fixed number (pm.max_children) of child processes;
; dynamic - the number of child processes are set dynamically based on the
; following directives:
; pm.max_children - the maximum number of children that can
; be alive at the same time.
; pm.start_servers - the number of children created on startup.
; pm.min_spare_servers - the minimum number of children in 'idle'
; state (waiting to process). If the number
; of 'idle' processes is less than this
; number then some children will be created.
; pm.max_spare_servers - the maximum number of children in 'idle'
; state (waiting to process). If the number
; of 'idle' processes is greater than this
; number then some children will be killed.
; Note: This value is mandatory.
pm = dynamic pm = dynamic
; The number of child processes to be created when pm is set to 'static' and the ; The number of child processes to be created when pm is set to 'static' and the
; maximum number of child processes to be created when pm is set to 'dynamic'. ; maximum number of child processes to be created when pm is set to 'dynamic'.
; This value sets the limit on the number of simultaneous requests that will be
; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
; CGI.
; Note: Used when pm is set to either 'static' or 'dynamic'
; Note: This value is mandatory.
pm.max_children = 6 pm.max_children = 6
; The number of child processes created on startup. ; The number of child processes created on startup.
; Note: Used only when pm is set to 'dynamic'
; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
pm.start_servers = 3 pm.start_servers = 3
; The desired minimum number of idle server processes. ; The desired minimum number of idle server processes.
; Note: Used only when pm is set to 'dynamic'
; Note: Mandatory when pm is set to 'dynamic'
pm.min_spare_servers = 3 pm.min_spare_servers = 3
; The desired maximum number of idle server processes. ; The desired maximum number of idle server processes.
; Note: Used only when pm is set to 'dynamic'
; Note: Mandatory when pm is set to 'dynamic'
pm.max_spare_servers = 5 pm.max_spare_servers = 5
; The number of requests each child process should execute before respawning. ; The number of requests each child process should execute before respawning.
; This can be useful to work around memory leaks in 3rd party libraries. For
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
; Default Value: 0
pm.max_requests = 500 pm.max_requests = 500
; The URI to view the FPM status page. If this value is not set, no URI will be ; The URI to view the FPM status page. If this value is not set, no URI will be
; recognized as a status page. By default, the status page shows the following ; recognized as a status page.
; information:
; accepted conn - the number of request accepted by the pool;
; pool - the name of the pool;
; process manager - static or dynamic;
; idle processes - the number of idle processes;
; active processes - the number of active processes;
; total processes - the number of idle + active processes.
; max children reached - number of times, the process limit has been reached,
; when pm tries to start more children (works only for
; pm 'dynamic')
; The values of 'idle processes', 'active processes' and 'total processes' are
; updated each second. The value of 'accepted conn' is updated in real time.
; Example output:
; accepted conn: 12073
; pool: www
; process manager: static
; idle processes: 35
; active processes: 65
; total processes: 100
; max children reached: 1
; By default the status page output is formatted as text/plain. Passing either
; 'html' or 'json' as a query string will return the corresponding output
; syntax. Example:
; http://www.foo.bar/status
; http://www.foo.bar/status?json
; http://www.foo.bar/status?html
; Note: The value must start with a leading slash (/). The value can be
; anything, but it may not be a good idea to use the .php extension or it
; may conflict with a real PHP file.
; Default Value: not set
pm.status_path = /fpm-status pm.status_path = /fpm-status
; The ping URI to call the monitoring page of FPM. If this value is not set, no ; The ping URI to call the monitoring page of FPM. If this value is not set, no
; URI will be recognized as a ping page. This could be used to test from outside ; URI will be recognized as a ping page.
; that FPM is alive and responding, or to
; - create a graph of FPM availability (rrd or such);
; - remove a server from a group if it is not responding (load balancing);
; - trigger alerts for the operating team (24/7).
; Note: The value must start with a leading slash (/). The value can be
; anything, but it may not be a good idea to use the .php extension or it
; may conflict with a real PHP file.
; Default Value: not set
ping.path = /ping ping.path = /ping
; This directive may be used to customize the response of a ping request. The
; response is formatted as text/plain with a 200 response code.
; Default Value: pong
;ping.response = pong
; The timeout for serving a single request after which the worker process will ; The timeout for serving a single request after which the worker process will
; be killed. This option should be used when the 'max_execution_time' ini option ; be killed.
; does not stop script execution for some reason. A value of '0' means 'off'.
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
; Default Value: 0
request_terminate_timeout = 1d request_terminate_timeout = 1d
; The timeout for serving a single request after which a PHP backtrace will be ; The timeout for serving a single request after which a PHP backtrace will be
; dumped to the 'slowlog' file. A value of '0s' means 'off'. ; dumped to the 'slowlog' file. A value of '0s' means 'off'.
; Available units: s(econds)(default), m(inutes), h(ours), or d(ays)
; Default Value: 0
request_slowlog_timeout = 5s request_slowlog_timeout = 5s
; The log file for slow requests ; The log file for slow requests.
; Default Value: not set slowlog = /var/log/nginx/{POOLNAME}.slow.log
; Note: slowlog is mandatory if request_slowlog_timeout is set
slowlog = /var/log/nginx/NAMETOCHANGE.slow.log
; Set open file descriptor rlimit. ; Set open file descriptor rlimit.
; Default Value: system defined value
rlimit_files = 4096 rlimit_files = 4096
; Set max core size rlimit. ; Set max core size rlimit.
; Possible Values: 'unlimited' or an integer greater or equal to 0
; Default Value: system defined value
rlimit_core = 0 rlimit_core = 0
; Chroot to this directory at the start. This value must be defined as an
; absolute path. When this value is not set, chroot is not used.
; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
; of its subdirectories. If the pool prefix is not set, the global prefix
; will be used instead.
; Note: chrooting is a great security feature and should be used whenever
; possible. However, all PHP paths will be relative to the chroot
; (error_log, sessions.save_path, ...).
; Default Value: not set
;chroot =
; Chdir to this directory at the start. ; Chdir to this directory at the start.
; Note: relative path can be used. chdir = {DESTDIR}
; Default Value: current directory or / when chroot
chdir = /var/www/NAMETOCHANGE
; Redirect worker stdout and stderr into main error log. If not set, stdout and ; Redirect worker stdout and stderr into main error log.
; stderr will be redirected to /dev/null according to FastCGI specs.
; Note: on highloaded environement, this can cause some delay in the page
; process time (several ms).
; Default Value: no
catch_workers_output = yes catch_workers_output = yes
; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from ; Do not clear environment in FPM workers.
; the current environment. clear_env = no
; Default Value: clean env
;env[HOSTNAME] = $HOSTNAME
;env[PATH] = /usr/local/bin:/usr/bin:/bin
;env[TMP] = /tmp
;env[TMPDIR] = /tmp
;env[TEMP] = /tmp
; Additional php.ini defines, specific to this pool of workers. These settings ; Additional php.ini defines, specific to this pool of workers.
; overwrite the values previously defined in the php.ini. The directives are the php_value[upload_max_filesize] = 1G
; same as the PHP SAPI: php_value[post_max_size] = 1G
; php_value/php_flag - you can set classic ini defines which can php_value[default_charset] = UTF-8
; be overwritten from PHP call 'ini_set'. php_value[always_populate_raw_post_data] = -1
; php_admin_value/php_admin_flag - these directives won't be overwritten by
; PHP call 'ini_set'
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.
; Defining 'extension' will load the corresponding shared extension from
; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
; overwrite previously defined php.ini values, but will append the new value
; instead.
; Note: path INI options can be relative and will be expanded with the prefix
; (pool, global or /usr)
; Default Value: nothing is defined by default except the values in php.ini and
; specified at startup with the -d argument
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
;php_flag[display_errors] = off
;php_admin_value[error_log] = /var/log/fpm-php.www.log
;php_admin_flag[log_errors] = on
;php_admin_value[memory_limit] = 32M
php_value[upload_max_filesize] = 10G
php_value[post_max_size] = 10G

View file

@ -1,20 +1,20 @@
{ {
"name": "Custom Webapp",
"id": "my_webapp",
"packaging_format": 1, "packaging_format": 1,
"id": "my_webapp",
"name": "Custom Webapp",
"description": { "description": {
"en": "Empty App with a file access to the web directory", "en": "Custom Web app with SFTP access",
"fr": "Répertoire Web vide avec un accès fichier" "fr": "Application Web personnalisée avec accès SFTP"
}, },
"licence": "AGPL-3",
"maintainer": { "maintainer": {
"name": "kload", "name": "YunoHost Contributors",
"email": "kload@kload.fr" "email": "apps@yunohost.org"
},
"multi_instance": true,
"requirements": {
"yunohost": ">= 2.4.0"
}, },
"multi_instance": "true",
"services": [
"nginx",
"php5-fpm"
],
"arguments": { "arguments": {
"install" : [ "install" : [
{ {
@ -37,22 +37,31 @@
"default": "/site" "default": "/site"
}, },
{ {
"name": "admin", "name": "password",
"type": "user", "type": "password",
"ask": { "ask": {
"en": "Choose the YunoHost user who will be able to upload documents to this directory", "en": "Set the password for the SFTP access",
"fr": "Choisissez l'utilisateur YunoHost qui sera capable d'envoyer des documents dans ce répertoire web" "fr": "Définissez le mot de passe pour l'accès SFTP"
}, },
"example": "johndoe" "example": "myreallystrengthpassword"
}, },
{ {
"name": "is_public", "name": "is_public",
"type": "boolean",
"ask": { "ask": {
"en": "Is it a public website ?", "en": "Is it a public website?",
"fr": "Est-ce un site public ?" "fr": "Est-ce un site public ?"
}, },
"choices": ["Yes", "No"], "default": true
"default": "Yes" },
{
"name": "mysql_db",
"type": "boolean",
"ask": {
"en": "Do you need a MySQL database?",
"fr": "Avez-vous besoin d'une base de données MySQL ?"
},
"default": false
} }
] ]
} }

View file

@ -1,68 +1,100 @@
#!/bin/bash #!/bin/bash
set -e # Exit on command errors and treat unset variables as an error
set -eu
# Get multi-instances specific variables
app=$YNH_APP_INSTANCE_NAME
app_nb=$YNH_APP_INSTANCE_NUMBER
# Retrieve arguments # Retrieve arguments
domain=$1 domain=$1
path=$2 path=${2%/}
user=$3 password=$3
is_public=$4 is_public=$4
final_path=/var/www/my_webapp mysql_db=$5
# Source app helpers
. /usr/share/yunohost/helpers
# Check domain/path availability # Check domain/path availability
sudo yunohost app checkurl $domain$path -a my_webapp sudo yunohost app checkurl "${domain}${path}" -a "$app" \
path=${path%/} || exit 1
# Check user # Check destination directory
sudo yunohost user list --json | grep -q "\"username\": \"$user\"" \ DESTDIR="/var/www/${app}"
|| (echo "User '$user' does not exist" && exit 1) [[ -d "$DESTDIR" ]] && ynh_die \
sudo yunohost app setting my_webapp allowed_users -v "$user" "The destination directory '${DESTDIR}' already exists.\
You should safely delete it before installing this app."
# Update the salt in the admin.php file # Create the user account
salt=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p') user="webapp${app_nb}"
sed -i "s@SALTTOCHANGE@$salt@g" ../sources/admin.php sudo useradd -c "${app} user account" \
-d "$DESTDIR" -M -g www-data "$user" \
|| ynh_die "Unable to create user account"
sudo chpasswd <<< "${user}:${password}"
# Modify the index.html instruction file # Harden SSH connection for the user
sed -i "s@USER@$user@g" ../sources/files/index.html echo "##-> ${app}
sed -i "s@URL@https://$domain$path/admin/@g" ../sources/files/index.html # Hardening user connection
Match User ${user}
ChrootDirectory %h
ForceCommand internal-sftp
AllowTcpForwarding no
PermitTunnel no
X11Forwarding no
##<- ${app}" | sudo tee -a /etc/ssh/sshd_config
# Copy files to the right place # Specify the user and the domain in the home page
sudo mkdir -p $final_path sed -i "s@{DOMAIN}@${domain}@g" ../sources/www/index.html
sudo cp ../sources/admin.php $final_path/ sed -i "s@{USER}@${user}@g" ../sources/www/index.html
sudo cp -r ../sources/_assets $final_path/
sudo cp -r ../sources/files $final_path/
# Set permissions # Initialize database as needed
sudo chmod 775 -R $final_path/files if [[ $mysql_db -eq 1 ]]; then
sudo chown -hR www-data:www-data $final_path/files dbname=$app
dbuser=$app
dbpass=$(ynh_string_random)
ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
# Modify Nginx configuration file and copy it to Nginx conf directory # Store the database access
if [[ "$path" == "" ]]; then echo -e "# MySQL Database
sed -i "s@LOCATIONTOCHANGE@/@g" ../conf/nginx.conf name: ${dbname}\nuser: ${dbuser}\npass: ${dbpass}" > ../sources/db_access.txt
else ynh_app_setting_set "$app" mysqlpwd "$dbpass"
sed -i "s@LOCATIONTOCHANGE@$path@g" ../conf/nginx.conf
fi
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
sed -i "s@NAMETOCHANGE@my_webapp@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/my_webapp.conf
# Same goes for PHP-FPM configuration
sed -i "s@NAMETOCHANGE@my_webapp@g" ../conf/php-fpm.conf
sudo cp ../conf/php-fpm.conf /etc/php5/fpm/pool.d/my_webapp.conf
# Make app public if necessary
sudo yunohost app setting my_webapp is_public -v "$is_public"
if [ "$is_public" = "Yes" ];
then
sudo yunohost app setting my_webapp unprotected_uris -v "/"
fi fi
# Protect the file manager # Copy files to the right place and set permissions
sudo yunohost app setting my_webapp protected_uris -v "/admin" sudo cp -r ../sources "$DESTDIR"
sudo chown -hR "${user}:" "$DESTDIR"
# Reload Nginx, php5-fpm and regenerate SSOwat conf # Home directory of the user need to be owned by root to allow
# SFTP connections
sudo chown root: "$DESTDIR"
# Save app settings
ynh_app_setting_set "$app" is_public "$is_public"
ynh_app_setting_set "$app" mysql_db "$mysql_db"
ynh_app_setting_set "$app" password "$password"
ynh_app_setting_set "$app" user "$user"
# Set SSOwat rules
[[ $is_public -eq 1 ]] \
&& ynh_app_setting_set "$app" skipped_uris "/"
# Copy and set nginx configuration
nginx_conf="/etc/nginx/conf.d/${domain}.d/${app}.conf"
sed -i "s@{LOCATION}@${path:-/}@g" ../conf/nginx.conf
sed -i "s@{DESTDIR}@${DESTDIR}@g" ../conf/nginx.conf
sed -i "s@{POOLNAME}@${app}@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf "$nginx_conf"
# Copy and set php-fpm configuration
phpfpm_conf="/etc/php5/fpm/pool.d/${app}.conf"
sed -i "s@{USER}@${user}@g" ../conf/php-fpm.conf
sed -i "s@{POOLNAME}@${app}@g" ../conf/php-fpm.conf
sed -i "s@{DESTDIR}@${DESTDIR}@g" ../conf/php-fpm.conf
sudo cp ../conf/php-fpm.conf "$phpfpm_conf"
# Reload services
sudo service php5-fpm reload
sudo service nginx reload sudo service nginx reload
sudo killall php5-fpm || echo "PHP-FPM already killed" sudo service sshd reload
sudo service php5-fpm start
sudo yunohost app ssowatconf

View file

@ -1,14 +1,38 @@
#!/bin/bash #!/bin/bash
domain=$(sudo yunohost app setting my_webapp domain) # Get multi-instances specific variables
app=$YNH_APP_INSTANCE_NAME
app_nb=$YNH_APP_INSTANCE_NUMBER
sudo service pure-ftpd-ldap stop # Source app helpers
sudo apt-get remove -y -qq pure-ftpd-ldap pure-ftpd-common . /usr/share/yunohost/helpers
sudo yunohost service remove pure-ftpd-ldap
sudo rm -rf /var/www/my_webapp # Retrieve app settings
sudo rm -f /etc/nginx/conf.d/$domain.d/my_webapp.conf domain=$(ynh_app_setting_get "$app" domain)
sudo rm -f /etc/php5/fpm/pool.d/my_webapp.conf mysql_db=$(ynh_app_setting_get "$app" mysql_db)
sudo service nginx reload # Drop MySQL database and user as needed
sudo yunohost app ssowatconf if [[ $mysql_db -eq 1 ]]; then
dbname=$app
dbuser=$app
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
ynh_mysql_drop_db $dbname || true
ynh_mysql_drop_user $dbuser || true
fi
# Delete app directory and configurations
sudo rm -rf "/var/www/${app}"
sudo rm -f "/etc/php5/fpm/pool.d/${app}.conf"
[[ -n $domain ]] && sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Remove custom SSH configuration
sudo sed -i "/##-> ${app}/,/##<- ${app}/d" /etc/ssh/sshd_config
# Reload services
sudo service php5-fpm restart || true
sudo service nginx reload || true
sudo service sshd reload
# Remove the user account
user="webapp${app_nb}"
sudo deluser --quiet --force "$user" >/dev/null

33
sources/www/index.html Normal file
View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>Custom Web App</title>
</head>
<body>
<h1>It works!</h1>
<p>Congratulation, you have just installed your custom web app.</p>
<h2>Access your site</h2>
<p>
You can access to your site - e.g. to put content, change this wonderful
page - using SFTP. You can use a client application for that such as
<a href="https://filezilla-project.org/download.php?type=client" target="_blank">FileZilla</a>.
Here are the SFTP connection details:
</p>
<dl>
<dt>Domain</dt>
<dd>{DOMAIN}</dd>
<dt>Port</dt>
<dd>22</dd>
<dt>User</dt>
<dd>{USER}</dd>
<dt>Password</dt>
<dd><i>the one you set at installation</i></dd>
</dl>
<hr/>
<p>As a reward, here is a random cat picture:</p>
<img src="https://thecatapi.com/api/images/get?format=src&type=gif">
</body>
</html>