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

推荐订阅源

量子位
P
Privacy International News Feed
Security Latest
Security Latest
Spread Privacy
Spread Privacy
NISL@THU
NISL@THU
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The Last Watchdog
The Last Watchdog
S
Schneier on Security
Engineering at Meta
Engineering at Meta
Google Online Security Blog
Google Online Security Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Know Your Adversary
Know Your Adversary
Cyberwarzone
Cyberwarzone
C
Cyber Attacks, Cyber Crime and Cyber Security
G
GRAHAM CLULEY
A
Arctic Wolf
博客园 - 聂微东
I
Intezer
腾讯CDC
罗磊的独立博客
T
Tailwind CSS Blog
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
L
Lohrmann on Cybersecurity
人人都是产品经理
人人都是产品经理
C
Cybersecurity and Infrastructure Security Agency CISA
博客园 - 【当耐特】
P
Palo Alto Networks Blog
Simon Willison's Weblog
Simon Willison's Weblog
W
WeLiveSecurity
N
News and Events Feed by Topic
SecWiki News
SecWiki News
S
Security Affairs
T
Threat Research - Cisco Blogs
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
T
Troy Hunt's Blog
N
News and Events Feed by Topic
P
Proofpoint News Feed
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
I
InfoQ
Hacker News: Ask HN
Hacker News: Ask HN
T
The Blog of Author Tim Ferriss
Schneier on Security
Schneier on Security
Hacker News - Newest:
Hacker News - Newest: "LLM"
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
D
Darknet – Hacking Tools, Hacker News & Cyber Security

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