https://github.com/shybyte/go-remote-storage
https://github.com/shybyte/go-remote-storage
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shybyte/go-remote-storage
- Owner: shybyte
- Created: 2013-09-06T07:11:26.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-25T10:23:17.000Z (about 12 years ago)
- Last Synced: 2025-01-03T20:27:53.844Z (about 1 year ago)
- Language: Go
- Size: 250 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remote Storage Implementation written in golang
## Installation
TODO
### Creating Password
echo -n password | sha512sum | cut -f 1 -d " " >password-sha512.txt
### Apache Reverse Proxy Config
a2enmod proxy
a2enmod proxy_http
#### Example Apache Proxy Config
ProxyPass /.well-known/host-meta.json http://localhost:8888/.well-known/host-meta.json
ProxyPassReverse /.well-known/host-meta.json http://localhost:8888/.well-known/host-meta.json
ProxyPass /gors http://localhost:8888/gors
ProxyPassReverse /gors http://localhost:8888/gors
service apache2 restart