rfcs/README.md

17 lines
426 B
Markdown
Raw Permalink Normal View History

2018-08-09 04:40:24 +00:00
# rfcs
Similar to [khuxkm's previous attempt](https://github.com/tildetown/tilde-rfcs), this project will bring an RFC-style proposals system to the the tildeverse.
However, unlike that attempt, this system will use YAML front-matter.
2019-07-09 04:54:53 +00:00
See [RFC 0](https://rfc.tildeverse.org/rfcs/0) for more info.
## nginx configs
```
location ~* ^/rfcs/(.+)$ {
try_files $uri $uri/ /rfcs/index.php?$1;
include snippets/php.conf;
}
```