yourls代表您自己的url缩短器,这是一个免费的开源php脚本,可让您创建自定义url缩短服务。它允许您创建简短和自定义的url,跟踪点击统计信息并控制您的数据。
在 ubuntu 22.04 lts jammy jellyfish 上安装 yourls
第 1 步。在开始安装过程之前,最好更新系统以确保我们拥有最新的软件包。为此,请打开终端并运行以下命令:
sudo apt update sudo apt upgrade sudo apt install wget apt-transport-https gnupg2
第 2 步。在 ubuntu 22.04 上安装 lamp 堆栈。
yourls需要web服务器,数据库和php才能运行。如果您没有安装 lamp 堆栈,您可以按照我们的指南进行操作。
第 3 步。配置 mariadb。
默认情况下,mariadb 未强化。您可以使用脚本保护 mariadb。您应该仔细阅读并在每个步骤下方仔细阅读,这将设置root密码,删除匿名用户,禁止远程root登录,并删除测试数据库和对安全mariadb的访问权限:mysql_secure_installation
mysql_secure_installation
像这样配置它:
- set root password? [y/n] y - remove anonymous users? [y/n] y - disallow root login remotely? [y/n] y - remove test database and access to it? [y/n] y - reload privilege tables now? [y/n] y
接下来,我们需要登录到 mariadb 控制台并为 yourls 创建一个数据库。运行以下命令:
mysql -u root -p
- 这将提示您输入密码,因此请输入您的mariadb root密码并按enter键。登录到数据库服务器后,您需要为yourls安装创建一个数据库:
mariadb [(none)]> create database yourlsdb character set utf8mb4; mariadb [(none)]> grant all on yourlsdb.* to 'yourls'@'localhost' identified by 'your-strong-passwd'; mariadb [(none)]> flush privileges; mariadb [(none)]> exit;
有关安装 mariadb 的其他资源,请阅读以下帖子:
第 4 步。在 ubuntu 22.04 上安装 yourls。
默认情况下,yourls 在 ubuntu 22.04 基础存储库上不可用。现在运行以下命令,从人生就是博尊龙凯时官网下载最新版本的yourls:
wget https://github.com/yourls/yourls/archive/refs/tags/1.9.2.tar.gz 接下来,提取下载的存档:
sudo tar -xvzf 1.9.2.tar.gz sudo mv yourls-1.9.2/* /var/www/yourls/ sudo rm -rf yourls-1.9.2/
之后,将 yourls 目录的所有权更改为 apache 用户:
sudo chown -r www-data:www-data /var/www/yourls sudo chmod -r 755 /var/www/yourls sudo chmod 777 /var/www/yourls/user/config.php
接下来,复制到:user/config-sample.php
user/config.php
cp user/config-sample.php user/config.php nano user/config.php
编辑以下行以匹配数据库配置:
* ** mysql settings - you can get this info from your web host */ /** mysql database username */ define( 'yourls_db_user', 'yourls' ); /** mysql database password */ define( 'yourls_db_pass', 'your-strong-passwd' ); /** the name of the database for yourls */ define( 'yourls_db_name', 'yourlsdb' ); /** mysql hostname. ** if using a non standard port, specify it like 'hostname:port', eg. 'localhost:9999' or '127.0.0.1:666' */ define( 'yourls_db_host', 'localhost' ); /** mysql tables prefix */ define( 'yourls_db_prefix', 'yourls_' );
为 yourls 设置网站网址:
/** yourls installation url -- all lowercase, no trailing slash at the end. ** if you define it to "http://sho.rt", don't use "http://www.sho.rt" in your browser (and vice-versa) */ define( 'yourls_site', 'http://yourls.your-domain.com' );
接下来,设置用户和密码:
/** username(s) and password(s) allowed to access the site. passwords either in plain text or as encrypted hashes ** yourls will auto encrypt plain text passwords in this file ** read http://yourls.org/userpassword for more information */ $yourls_user_passwords = array( 'admin' => 'meilana', 'jmutai' => 'meilana-strong-password', // you can have one or more 'login'=>'password' lines );
保存并关闭文件。
第5步。配置 apache 虚拟主机。
现在为 yourls 创建虚拟主机配置文件:
nano /etc/apache2/sites-available/yourls.conf
添加以下文件:
*:80>
servername url.unixcop.com
documentroot /var/www/yourls
/var/www/yourls/>
options followsymlinks
allowoverride all
require all granted
errorlog ${apache_log_dir}/yourls.your-domain.com_error.log
customlog ${apache_log_dir}/yourls.your-domain.com_access.log combined
保存并关闭文件,然后重新启动 apache,以便进行更改:
sudo a2enmod rewrite sudo a2ensite yourls.conf sudo systemctl restart apache2
有关安装和管理 apache 的其他资源,请阅读下面的帖子:
- 如何在 ubuntu linux √ 上安装 apache。
第 6 步。使用let’s encrypt ssl保护yourls。
首先,使用以下命令安装 certbot 客户端:
sudo apt install certbot python3-certbot-apache2
接下来,按照以下步骤使用let’s encrypt获取ssl证书:
certbot --apache -d yourls.your-domain.com
让我们加密证书的有效期为 90 天,强烈建议在证书过期之前续订证书。您可以通过运行以下命令来测试证书的自动续订:
sudo certbot renew --dry-run
步骤 7.配置防火墙。
现在我们使用apache设置了一个简单防火墙(ufw),以允许在http和https的默认web端口上进行公共访问:
sudo ufw allow openssh sudo ufw allow 'apache full' sudo ufw enable
第8步。访问 yourls 网页界面。
成功安装后,现在打开您的网络浏览器并使用 url 访问 yourls web ui。您将被重定向到以下页面:https://yourls.your-domain.com
感谢您使用本教程在 ubuntu 22.04 lts jammy jellyfish 系统上安装 yourls(您自己的 url 缩短器)。如需其他帮助或有用信息,我们建议您查看 。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/yun224643.html