搭建 Web 网站常用技能
为软件创建专用数据库及其账号
create database if not exists gitea default charset = utf8mb4;
grant ALL PRIVILEGES on gitea.* to gitea@localhost identified by 'youpasswd';
查找 Nginx 安装目录
ps aux | grep Nginx
修复 Wordpress 固定链接 404 问题
vi /www/server/panel/vhost/nginx/<yoursites>.conf
在server{} 字段 中的 “root /websit/wwwroot/;”(这行就是指定网站所在目录的) 这一行的下面 ,加入如下内容
location / {
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
参考: https://www.jb51.net/article/68866.htm
官网说明:https://wordpress.org/support/article/using-permalinks/
Maven 私服搭建
https://help.sonatype.com/repomanager3
然后在 settings.xml 的 profile 里配置私服仓库即可,(profile 里配置的仓库优先级高于 pom.xml)
--------蓝天上的云_转载请注明出处.