clean docs
This commit is contained in:
parent
15c69a820a
commit
208eb9eea3
4 changed files with 20 additions and 1 deletions
11
Docs/Hosting/apache.md
Normal file
11
Docs/Hosting/apache.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Apache
|
||||
|
||||
## .htaccess
|
||||
|
||||
```
|
||||
<Location "/.well-known/interverse">
|
||||
<IfModule mod_headers.c>
|
||||
Header set Access-Control-Allow-Origin "*"
|
||||
</IfModule>
|
||||
</Location>
|
||||
```
|
8
Docs/Hosting/nginx.md
Normal file
8
Docs/Hosting/nginx.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# nginx configuration
|
||||
```
|
||||
location /.well-known/interverse {
|
||||
add_header 'Access-Control-Allow-Origin' '*';
|
||||
return 200,"{your data here...}"
|
||||
# or any other way of returning your file
|
||||
}
|
||||
```
|
BIN
Docs/vid.mp4
BIN
Docs/vid.mp4
Binary file not shown.
|
@ -2,7 +2,7 @@
|
|||
|
||||
[Try it out!](https://libresolutions.network/Interverse)
|
||||
|
||||
[Demo video](https://codeberg.org/gabe/Interverse/src/branch/main/Docs/vid.mp4)
|
||||
[Demo video](https://storage.gabe.rocks/LibreSolutionsNetwork/Interverse%20Demo.mp4)
|
||||
## An inter-connected web-of-trust that allows you to easily discover like-minded sites.
|
||||
Interverse aims to enable [small-tech](https://small-tech.org#small-tech-is).
|
||||
|
||||
|
|
Loading…
Reference in a new issue