<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.hostsharing.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hsh00-chd</id>
	<title>Hostsharing Wiki - Benutzerbeiträge [de]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.hostsharing.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hsh00-chd"/>
	<link rel="alternate" type="text/html" href="https://wiki.hostsharing.net/index.php?title=Spezial:Beitr%C3%A4ge/Hsh00-chd"/>
	<updated>2026-04-25T22:28:20Z</updated>
	<subtitle>Benutzerbeiträge</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.hostsharing.net/index.php?title=Pixelfed&amp;diff=7465</id>
		<title>Pixelfed</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostsharing.net/index.php?title=Pixelfed&amp;diff=7465"/>
		<updated>2025-12-20T09:23:17Z</updated>

		<summary type="html">&lt;p&gt;Hsh00-chd: Abschnitt &amp;quot;systemd service anlegen&amp;quot; hinzugefügt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installation von Pixelfed =&lt;br /&gt;
&lt;br /&gt;
In HSAdmin werden anlegt:&lt;br /&gt;
&lt;br /&gt;
* ein User:&#039;xyz00-pixelfed&#039; mit &#039;/bin/bash&#039; als Shell&lt;br /&gt;
* eine Domain &#039;pixelfed.hs-example.de&#039;&lt;br /&gt;
* PostgreSQL-User und -Datenbank &#039;xyz00_pixelfed&#039; (Passwort notieren)&lt;br /&gt;
&lt;br /&gt;
Mit &#039;hsscript&#039; sind das die folgenden Zeilen:&lt;br /&gt;
&lt;br /&gt;
 user.add({set:{name:&#039;xyz00-pixelfed&#039;,shell:&#039;/bin/bash&#039;,password:&#039;xxxxxx&#039;}})&lt;br /&gt;
 domain.add({set:{name:&#039;pixelfed.hs.example.de&#039;,user:&#039;xyz00-pixelfed&#039;}})&lt;br /&gt;
 postgresqluser.add({set:{name:&#039;xyz00_pixelfed&#039;,password:&#039;xxxxxx&#039;}})&lt;br /&gt;
 postgresqldb.add({set:{name:&#039;xyz00_pixelfed&#039;,owner:&#039;xyz00_pixelfed&#039;}})&lt;br /&gt;
&lt;br /&gt;
Auf der Shell:&lt;br /&gt;
&lt;br /&gt;
 $ ssh -l xyz00 xyz00.hostsharing.net&lt;br /&gt;
 xyz00@h97:~$ sudo -u xyz00-pixelfed -i&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd doms/pixelfed.hs.example.de/&lt;br /&gt;
 xyz00-pixelfed@h97:~/doms/pixelfed.hs.example.de$ rm -rf subs/www/ subs-ssl/www/ htdocs-ssl/.htaccess &lt;br /&gt;
 xyz00-pixelfed@h97:~/doms/pixelfed.hs.example.de$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ git clone https://github.com/pixelfed/pixelfed.git&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ git tag&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ git checkout v0.11.4  &lt;br /&gt;
&lt;br /&gt;
Installation von Composer:&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ mkdir composer&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd composer/&lt;br /&gt;
 xyz00-pixelfed@h97:~/composer$ php -r &amp;quot;copy(&#039;https://getcomposer.org/installer&#039;, &#039;composer-setup.php&#039;);&amp;quot;&lt;br /&gt;
xyz00-pixelfed@h97:~/composer$ php -r &amp;quot;if (hash_file(&#039;sha384&#039;, &#039;composer-setup.php&#039;) === &#039;55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae&#039;) { echo &#039;Installer verified&#039;; } else { echo &#039;Installer corrupt&#039;; unlink(&#039;composer-setup.php&#039;); } echo PHP_EOL;&amp;quot;&lt;br /&gt;
 xyz00-pixelfed@h97:~/composer$ php composer-setup.php&lt;br /&gt;
 php -r &amp;quot;unlink(&#039;composer-setup.php&#039;);&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Installation der PHP-Abhängigkeiten:&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~/composer$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd pixelfed/&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php ~/composer/composer.phar install --no-ansi --no-interaction --optimize-autoloader&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd pixelfed/&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ cat .env&lt;br /&gt;
 APP_NAME=&amp;quot;Pixelfed&amp;quot;&lt;br /&gt;
 APP_ENV=&amp;quot;production&amp;quot;&lt;br /&gt;
 APP_KEY=base64:xxx&lt;br /&gt;
 APP_DEBUG=&amp;quot;false&amp;quot;&lt;br /&gt;
 OPEN_REGISTRATION=&amp;quot;false&amp;quot;&lt;br /&gt;
 ENFORCE_EMAIL_VERIFICATION=&amp;quot;false&amp;quot;&lt;br /&gt;
 PF_MAX_USERS=&amp;quot;1000&amp;quot;&lt;br /&gt;
 OAUTH_ENABLED=&amp;quot;true&amp;quot;&lt;br /&gt;
 PF_OPTIMIZE_IMAGES=&amp;quot;true&amp;quot;&lt;br /&gt;
 IMAGE_QUALITY=&amp;quot;80&amp;quot;&lt;br /&gt;
 MAX_PHOTO_SIZE=&amp;quot;15000&amp;quot;&lt;br /&gt;
 MAX_CAPTION_LENGTH=&amp;quot;500&amp;quot;&lt;br /&gt;
 MAX_ALBUM_LENGTH=&amp;quot;4&amp;quot;&lt;br /&gt;
 APP_URL=&amp;quot;https://pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 APP_DOMAIN=&amp;quot;pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 ADMIN_DOMAIN=&amp;quot;pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 SESSION_DOMAIN=&amp;quot;pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 TRUST_PROXIES=&amp;quot;*&amp;quot;&lt;br /&gt;
 DB_CONNECTION=&amp;quot;pgsql&amp;quot;&lt;br /&gt;
 DB_HOST=&amp;quot;127.0.0.1&amp;quot;&lt;br /&gt;
 DB_PORT=&amp;quot;5432&amp;quot;&lt;br /&gt;
 DB_DATABASE=&amp;quot;xyz00_pixelfed&amp;quot;&lt;br /&gt;
 DB_USERNAME=&amp;quot;xyz00_pixelfed&amp;quot;&lt;br /&gt;
 DB_PASSWORD=&amp;quot;xxxx&amp;quot;&lt;br /&gt;
 REDIS_CLIENT=&amp;quot;predis&amp;quot;&lt;br /&gt;
 REDIS_SCHEME=&amp;quot;unix&amp;quot;&lt;br /&gt;
 REDIS_HOST=&amp;quot;null&amp;quot;&lt;br /&gt;
 REDIS_PASSWORD=&amp;quot;eiNeiyohnie7heivaiw4wu3a&amp;quot;&lt;br /&gt;
 REDIS_PORT=&amp;quot;null&amp;quot;&lt;br /&gt;
 REDIS_PATH=&amp;quot;/home/pacs/xyz00/users/pixelfed/redis/var/redis-server.sock&amp;quot;&lt;br /&gt;
 SESSION_DRIVER=&amp;quot;database&amp;quot;&lt;br /&gt;
 CACHE_DRIVER=&amp;quot;redis&amp;quot;&lt;br /&gt;
 QUEUE_DRIVER=&amp;quot;redis&amp;quot;&lt;br /&gt;
 BROADCAST_DRIVER=&amp;quot;log&amp;quot;&lt;br /&gt;
 LOG_CHANNEL=&amp;quot;stack&amp;quot;&lt;br /&gt;
 HORIZON_PREFIX=&amp;quot;horizon-&amp;quot;&lt;br /&gt;
 ACTIVITY_PUB=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_REMOTE_FOLLOW=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_INBOX=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_OUTBOX=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_SHAREDINBOX=&amp;quot;true&amp;quot;&lt;br /&gt;
 EXP_EMC=&amp;quot;true&amp;quot;&lt;br /&gt;
 MAIL_DRIVER=smtp&lt;br /&gt;
 MAIL_HOST=127.0.0.1&lt;br /&gt;
 MAIL_PORT=4025&lt;br /&gt;
 MAIL_USERNAME=null&lt;br /&gt;
 MAIL_PASSWORD=null&lt;br /&gt;
 MAIL_ENCRYPTION=null&lt;br /&gt;
 MAIL_FROM_ADDRESS=&amp;quot;webmaster@pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 MAIL_FROM_NAME=&amp;quot;Pixelfed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd pixelfed/&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php $HOME/pixelfed/artisan horizon&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php $HOME/pixelfed/artisan key:generate&lt;br /&gt;
   52  vi .env&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan storage:link&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ rm -rf ~/doms/pixelfed.hs-example.de/htdocs-ssl&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ ln ln -s ~/pixelfed/public/ ~/doms/pixelfed.hs-example.de/htdocs-ssl&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan migrate --force&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan import:cities&lt;br /&gt;
   56  vi .env&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan instance:actor&lt;br /&gt;
   58  vi .env&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan passport:keys&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan route:cache&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan view:cache&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan config:cache&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan horizon:install&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan horizon:publish&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan horizon&lt;br /&gt;
&lt;br /&gt;
== systemd service anlegen ==&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ vi .config/systemd/user/horizon.service&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;ini&amp;quot; line&amp;gt;&lt;br /&gt;
 [Unit]&lt;br /&gt;
 Description=Pixelfed Horizon Service&lt;br /&gt;
 After=network-online.target&lt;br /&gt;
 &lt;br /&gt;
 [Service]&lt;br /&gt;
 WorkingDirectory=%h/pixelfed&lt;br /&gt;
 Environment=&amp;quot;PATH=/usr/local/bin:/usr/bin:/bin&amp;quot;&lt;br /&gt;
 ExecStart=/usr/bin/php artisan horizon&lt;br /&gt;
 Restart=always&lt;br /&gt;
 PrivateTmp=true&lt;br /&gt;
 NoNewPrivileges=true &lt;br /&gt;
 &lt;br /&gt;
 [Install]&lt;br /&gt;
 WantedBy=default.target&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~$ systemctl --user daemon-reload&lt;br /&gt;
 xyz00-pixelfed@h97:~$ systemctl --user enable --now horizon.service&lt;br /&gt;
 xyz00-pixelfed@h97:~$ systemctl --user status horizon.service&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* https://docs.pixelfed.org/running-pixelfed/installation/&lt;/div&gt;</summary>
		<author><name>Hsh00-chd</name></author>
	</entry>
	<entry>
		<id>https://wiki.hostsharing.net/index.php?title=Pixelfed&amp;diff=7464</id>
		<title>Pixelfed</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostsharing.net/index.php?title=Pixelfed&amp;diff=7464"/>
		<updated>2025-12-20T08:53:52Z</updated>

		<summary type="html">&lt;p&gt;Hsh00-chd: connect htdocs-ssl to application by creating an additional link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installation von Pixelfed =&lt;br /&gt;
&lt;br /&gt;
In HSAdmin werden anlegt:&lt;br /&gt;
&lt;br /&gt;
* ein User:&#039;xyz00-pixelfed&#039; mit &#039;/bin/bash&#039; als Shell&lt;br /&gt;
* eine Domain &#039;pixelfed.hs-example.de&#039;&lt;br /&gt;
* PostgreSQL-User und -Datenbank &#039;xyz00_pixelfed&#039; (Passwort notieren)&lt;br /&gt;
&lt;br /&gt;
Mit &#039;hsscript&#039; sind das die folgenden Zeilen:&lt;br /&gt;
&lt;br /&gt;
 user.add({set:{name:&#039;xyz00-pixelfed&#039;,shell:&#039;/bin/bash&#039;,password:&#039;xxxxxx&#039;}})&lt;br /&gt;
 domain.add({set:{name:&#039;pixelfed.hs.example.de&#039;,user:&#039;xyz00-pixelfed&#039;}})&lt;br /&gt;
 postgresqluser.add({set:{name:&#039;xyz00_pixelfed&#039;,password:&#039;xxxxxx&#039;}})&lt;br /&gt;
 postgresqldb.add({set:{name:&#039;xyz00_pixelfed&#039;,owner:&#039;xyz00_pixelfed&#039;}})&lt;br /&gt;
&lt;br /&gt;
Auf der Shell:&lt;br /&gt;
&lt;br /&gt;
 $ ssh -l xyz00 xyz00.hostsharing.net&lt;br /&gt;
 xyz00@h97:~$ sudo -u xyz00-pixelfed -i&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd doms/pixelfed.hs.example.de/&lt;br /&gt;
 xyz00-pixelfed@h97:~/doms/pixelfed.hs.example.de$ rm -rf subs/www/ subs-ssl/www/ htdocs-ssl/.htaccess &lt;br /&gt;
 xyz00-pixelfed@h97:~/doms/pixelfed.hs.example.de$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ git clone https://github.com/pixelfed/pixelfed.git&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ git tag&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ git checkout v0.11.4  &lt;br /&gt;
&lt;br /&gt;
Installation von Composer:&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ mkdir composer&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd composer/&lt;br /&gt;
 xyz00-pixelfed@h97:~/composer$ php -r &amp;quot;copy(&#039;https://getcomposer.org/installer&#039;, &#039;composer-setup.php&#039;);&amp;quot;&lt;br /&gt;
xyz00-pixelfed@h97:~/composer$ php -r &amp;quot;if (hash_file(&#039;sha384&#039;, &#039;composer-setup.php&#039;) === &#039;55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae&#039;) { echo &#039;Installer verified&#039;; } else { echo &#039;Installer corrupt&#039;; unlink(&#039;composer-setup.php&#039;); } echo PHP_EOL;&amp;quot;&lt;br /&gt;
 xyz00-pixelfed@h97:~/composer$ php composer-setup.php&lt;br /&gt;
 php -r &amp;quot;unlink(&#039;composer-setup.php&#039;);&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Installation der PHP-Abhängigkeiten:&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~/composer$ cd&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd pixelfed/&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php ~/composer/composer.phar install --no-ansi --no-interaction --optimize-autoloader&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd pixelfed/&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ cat .env&lt;br /&gt;
 APP_NAME=&amp;quot;Pixelfed&amp;quot;&lt;br /&gt;
 APP_ENV=&amp;quot;production&amp;quot;&lt;br /&gt;
 APP_KEY=base64:xxx&lt;br /&gt;
 APP_DEBUG=&amp;quot;false&amp;quot;&lt;br /&gt;
 OPEN_REGISTRATION=&amp;quot;false&amp;quot;&lt;br /&gt;
 ENFORCE_EMAIL_VERIFICATION=&amp;quot;false&amp;quot;&lt;br /&gt;
 PF_MAX_USERS=&amp;quot;1000&amp;quot;&lt;br /&gt;
 OAUTH_ENABLED=&amp;quot;true&amp;quot;&lt;br /&gt;
 PF_OPTIMIZE_IMAGES=&amp;quot;true&amp;quot;&lt;br /&gt;
 IMAGE_QUALITY=&amp;quot;80&amp;quot;&lt;br /&gt;
 MAX_PHOTO_SIZE=&amp;quot;15000&amp;quot;&lt;br /&gt;
 MAX_CAPTION_LENGTH=&amp;quot;500&amp;quot;&lt;br /&gt;
 MAX_ALBUM_LENGTH=&amp;quot;4&amp;quot;&lt;br /&gt;
 APP_URL=&amp;quot;https://pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 APP_DOMAIN=&amp;quot;pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 ADMIN_DOMAIN=&amp;quot;pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 SESSION_DOMAIN=&amp;quot;pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 TRUST_PROXIES=&amp;quot;*&amp;quot;&lt;br /&gt;
 DB_CONNECTION=&amp;quot;pgsql&amp;quot;&lt;br /&gt;
 DB_HOST=&amp;quot;127.0.0.1&amp;quot;&lt;br /&gt;
 DB_PORT=&amp;quot;5432&amp;quot;&lt;br /&gt;
 DB_DATABASE=&amp;quot;xyz00_pixelfed&amp;quot;&lt;br /&gt;
 DB_USERNAME=&amp;quot;xyz00_pixelfed&amp;quot;&lt;br /&gt;
 DB_PASSWORD=&amp;quot;xxxx&amp;quot;&lt;br /&gt;
 REDIS_CLIENT=&amp;quot;predis&amp;quot;&lt;br /&gt;
 REDIS_SCHEME=&amp;quot;unix&amp;quot;&lt;br /&gt;
 REDIS_HOST=&amp;quot;null&amp;quot;&lt;br /&gt;
 REDIS_PASSWORD=&amp;quot;eiNeiyohnie7heivaiw4wu3a&amp;quot;&lt;br /&gt;
 REDIS_PORT=&amp;quot;null&amp;quot;&lt;br /&gt;
 REDIS_PATH=&amp;quot;/home/pacs/xyz00/users/pixelfed/redis/var/redis-server.sock&amp;quot;&lt;br /&gt;
 SESSION_DRIVER=&amp;quot;database&amp;quot;&lt;br /&gt;
 CACHE_DRIVER=&amp;quot;redis&amp;quot;&lt;br /&gt;
 QUEUE_DRIVER=&amp;quot;redis&amp;quot;&lt;br /&gt;
 BROADCAST_DRIVER=&amp;quot;log&amp;quot;&lt;br /&gt;
 LOG_CHANNEL=&amp;quot;stack&amp;quot;&lt;br /&gt;
 HORIZON_PREFIX=&amp;quot;horizon-&amp;quot;&lt;br /&gt;
 ACTIVITY_PUB=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_REMOTE_FOLLOW=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_INBOX=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_OUTBOX=&amp;quot;true&amp;quot;&lt;br /&gt;
 AP_SHAREDINBOX=&amp;quot;true&amp;quot;&lt;br /&gt;
 EXP_EMC=&amp;quot;true&amp;quot;&lt;br /&gt;
 MAIL_DRIVER=smtp&lt;br /&gt;
 MAIL_HOST=127.0.0.1&lt;br /&gt;
 MAIL_PORT=4025&lt;br /&gt;
 MAIL_USERNAME=null&lt;br /&gt;
 MAIL_PASSWORD=null&lt;br /&gt;
 MAIL_ENCRYPTION=null&lt;br /&gt;
 MAIL_FROM_ADDRESS=&amp;quot;webmaster@pixelfed.hs-example.de&amp;quot;&lt;br /&gt;
 MAIL_FROM_NAME=&amp;quot;Pixelfed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 xyz00-pixelfed@h97:~$ cd pixelfed/&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php $HOME/pixelfed/artisan horizon&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php $HOME/pixelfed/artisan key:generate&lt;br /&gt;
   52  vi .env&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan storage:link&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ rm -rf ~/doms/pixelfed.hs-example.de/htdocs-ssl&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ ln ln -s ~/pixelfed/public/ ~/doms/pixelfed.hs-example.de/htdocs-ssl&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan migrate --force&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan import:cities&lt;br /&gt;
   56  vi .env&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan instance:actor&lt;br /&gt;
   58  vi .env&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan passport:keys&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan route:cache&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan view:cache&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan config:cache&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan horizon:install&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan horizon:publish&lt;br /&gt;
 xyz00-pixelfed@h97:~/pixelfed$ php artisan horizon&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* https://docs.pixelfed.org/running-pixelfed/installation/&lt;/div&gt;</summary>
		<author><name>Hsh00-chd</name></author>
	</entry>
</feed>