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

推荐订阅源

小众软件
小众软件
Y
Y Combinator Blog
Cisco Talos Blog
Cisco Talos Blog
T
Threatpost
T
Tor Project blog
I
Intezer
T
Threat Research - Cisco Blogs
L
LINUX DO - 热门话题
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
L
Lohrmann on Cybersecurity
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The Last Watchdog
The Last Watchdog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
P
Privacy & Cybersecurity Law Blog
N
News | PayPal Newsroom
N
News and Events Feed by Topic
C
CERT Recently Published Vulnerability Notes
T
Tenable Blog
K
Kaspersky official blog
V
Visual Studio Blog
T
Troy Hunt's Blog
Project Zero
Project Zero
博客园_首页
The Register - Security
The Register - Security
O
OpenAI News
G
Google Developers Blog
Simon Willison's Weblog
Simon Willison's Weblog
J
Java Code Geeks
D
DataBreaches.Net
F
Full Disclosure
Latest news
Latest news
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Security Affairs
Recent Commits to openclaw:main
Recent Commits to openclaw:main
腾讯CDC
有赞技术团队
有赞技术团队
Hacker News - Newest:
Hacker News - Newest: "LLM"
阮一峰的网络日志
阮一峰的网络日志
C
Cisco Blogs
Vercel News
Vercel News
V
Vulnerabilities – Threatpost
月光博客
月光博客
Hacker News: Ask HN
Hacker News: Ask HN
B
Blog RSS Feed
P
Palo Alto Networks Blog
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
G
GRAHAM CLULEY

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