惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
小众软件
小众软件
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
T
Threat Research - Cisco Blogs
Cisco Talos Blog
Cisco Talos Blog
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Hacker News: Ask HN
Hacker News: Ask HN
Application and Cybersecurity Blog
Application and Cybersecurity Blog
I
Intezer
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
Scott Helme
Scott Helme
MyScale Blog
MyScale Blog
B
Blog
The Last Watchdog
The Last Watchdog
The Cloudflare Blog
U
Unit 42
Last Week in AI
Last Week in AI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
T
Tor Project blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
T
Tailwind CSS Blog
Project Zero
Project Zero
P
Palo Alto Networks Blog
V
Vulnerabilities – Threatpost
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
C
Cisco Blogs
G
Google Developers Blog
A
About on SuperTechFans
博客园 - Franky
博客园 - 聂微东
Help Net Security
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
Recent Commits to openclaw:main
Recent Commits to openclaw:main
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
N
Netflix TechBlog - Medium
V2EX - 技术
V2EX - 技术
Cyberwarzone
Cyberwarzone
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
PCI Perspectives
PCI Perspectives
W
WeLiveSecurity
Engineering at Meta
Engineering at Meta
C
Check Point Blog
量子位

Feed of "schmarty/gem-diamond"

issue when using indieauth[dot]com? gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond proxy for profile images gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond gem-diamond
gem-diamond
schmarty · 2024-07-28 · via Feed of "schmarty/gem-diamond"

共有 2 个文件被更改,包括 10 次插入4 次删除

@ -4,9 +4,9 @@ class Config {
public static $base = 'https://webring.example.com/';
// Extra allowed prefixes for webring links. ($base is always included)
public static $allowedLinkDomains = [
//'https://xn--sr8hvo.ws/',
];
public static $allowedLinkDomains = [
//'https://xn--sr8hvo.ws/',
];
// User-agent string for requests this client makes
public static $useragent = 'IndieWeb Web Ring/2.0';
@ -17,6 +17,10 @@ class Config {
// Micropub scopes we want
public static $scope = 'profile';
// OAuth Client Metadata
public static $client_name = 'An IndieWeb Webring 🕸️💍';
public static $logo_uri = 'data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 180 100%22><text y=%22.9em%22 font-size=%2290%22>🕸️💍</text></svg>';
// Path to database
public static $dbPath = __DIR__ . '/../data/db.sqlite3';
public static $dbPath = __DIR__ . '/../data/db.sqlite3';
}

@ -9,6 +9,8 @@ $app = new Micropubkit\IndieAuthEngine(dirname(__FILE__).'/../views', [
'base' => \Config::$base,
'scope' => \Config::$scope,
'useragent' => \Config::$useragent,
'client_name' => \Config::$client_name,
'logo_uri' => \Config::$logo_uri,
]);
// set up db