这是 notepad.cc 的开源克隆,现已停产。
请参阅 https://notes.orga.cat 或 https://notes.orga.cat/whatever 的演示。
加密分支中提供了允许使用 Web Crypto API 进行可选加密的版本。
Installation 安装
在 index.php 文件顶部,更改 $base_url 变量以指向您的网站。
Make sure the web server is allowed to write to the _tmp directory.
确保允许 Web 服务器写入该 _tmp 目录。
在Apache上
您可能需要在站点配置中启用mod_rewrite并设置 .htaccess 文件。请参阅如何为 Apache 设置 mod_rewrite。
在 Nginx 上
要启用 URL 重写,请在配置文件中放置如下内容:
如果记事本位于根目录中:
location / {
rewrite ^/([a-zA-Z0-9_-]+)$ /index.php?note=$1;
}
If notepad is in a subdirectory:
如果记事本位于子目录中:
location ~* ^/notes/([a-zA-Z0-9_-]+)$ {
try_files $uri /notes/index.php?note=$1;
}
### 下载地址