mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-01-08 05:52:10 +07:00
Compare commits
No commits in common. "9b48c4731a3d3ca22960dd43bd3aadef0f0c66b4" and "76c6a5514d301a5aaaefbf5f6586b84f73d887d2" have entirely different histories.
9b48c4731a
...
76c6a5514d
2 changed files with 3 additions and 7 deletions
|
@ -20,8 +20,8 @@ The **clients** is used to fetch node information given by the server. First,
|
||||||
it will ask the server which node to fetch. Then, it will fetch the information
|
it will ask the server which node to fetch. Then, it will fetch the information
|
||||||
and report back to the server.
|
and report back to the server.
|
||||||
|
|
||||||
The **server** serves the Web UI and the `/api` endpoint that is used by the
|
The **server** serves an embedded Svelte static site for the Web UI. It also
|
||||||
clients.
|
serves the `/api` endpoint that is used by the clients and the Web UI itself.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
|
@ -85,7 +85,6 @@ See the [Makefile](./Makefile).
|
||||||
- :white_check_mark: Use `a-h/templ` and `HTMX` instead of `Svelte`.
|
- :white_check_mark: Use `a-h/templ` and `HTMX` instead of `Svelte`.
|
||||||
- Use Go standard `net/http` instead of `fiber`.
|
- Use Go standard `net/http` instead of `fiber`.
|
||||||
- :white_check_mark: Accept I2P nodes.
|
- :white_check_mark: Accept I2P nodes.
|
||||||
- :white_check_mark: Support Tor hidden service (beta, inform via HTTP header).
|
|
||||||
|
|
||||||
## Acknowledgement
|
## Acknowledgement
|
||||||
|
|
||||||
|
@ -122,7 +121,7 @@ Thank you!
|
||||||
This project is licensed under [BSD-3-Clause](./LICENSE) license.
|
This project is licensed under [BSD-3-Clause](./LICENSE) license.
|
||||||
|
|
||||||
[templ-repo]: https://github.com/a-h/templ "a-h/templ GitHub repository"
|
[templ-repo]: https://github.com/a-h/templ "a-h/templ GitHub repository"
|
||||||
[geoip-doc]: https://dev.maxmind.com/geoip/geolite2-free-geolocation-data/ "GeoLite2 Free documentation"
|
[geoip-doc]: https://dev.maxmind.com/geoip/geoip2/geolite2/ "GeoIP documentation"
|
||||||
[server-systemd-service]: ./deployment/init/xmr-nodes-server.service "systemd service example for server"
|
[server-systemd-service]: ./deployment/init/xmr-nodes-server.service "systemd service example for server"
|
||||||
[prober-systemd-service]: ./deployment/init/xmr-nodes-prober.service "systemd service example for prober"
|
[prober-systemd-service]: ./deployment/init/xmr-nodes-prober.service "systemd service example for prober"
|
||||||
[prober-systemd-timer]: ./deployment/init/xmr-nodes-prober.timer "systemd timer example for prober"
|
[prober-systemd-timer]: ./deployment/init/xmr-nodes-prober.timer "systemd timer example for prober"
|
||||||
|
|
|
@ -44,9 +44,6 @@ server {
|
||||||
add_header X-XSS-Protection "1; mode=block";
|
add_header X-XSS-Protection "1; mode=block";
|
||||||
add_header X-Download-Options noopen;
|
add_header X-Download-Options noopen;
|
||||||
|
|
||||||
# Add your onion URL here if you support it
|
|
||||||
# add_header Onion-Location http://<YOUR-ONION-ADDRESS>.onion$request_uri;
|
|
||||||
|
|
||||||
location = /robots.txt {
|
location = /robots.txt {
|
||||||
log_not_found off;
|
log_not_found off;
|
||||||
access_log off;
|
access_log off;
|
||||||
|
|
Loading…
Reference in a new issue