otherwise the browser will autoblunder an address like
@code{@uref{http://www.gnu/, www.gnu}} to
@code{@uref{http://www.gnu.com/, www.gnu.com}}. If you want
-to resolve ``@'' in your own TLDs, you must additionally
+to resolve @@ in your own TLDs, you must additionally
set @code{browser.fixup.dns_first_use_for_single_words} to @code{true}.
After configuring your browser, you might want to first confirm that it
NGINX setup:
@example
-server {
+server @{
listen 443;
server_name reclaim.id.local;
ssl on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;
- location /api {
+ location /api @{
rewrite /api/(.*) /$1 break;
proxy_pass http://127.0.0.1:7776;
- }
-}
+ @}
+@}
@end example
This will expose the REST API of GNUnet at https://reclaim.id/api.
Now we can add the user interfce to our NGINX configuraiton:
@example
-server {
+server @{
...
- location / {
+ location / @{
proxy_pass http://<whereever you serve the UI>;
- }
-}
+ @}
+@}
@end example
You can thest your setup by accessing https://reclaim.id in your browser through the GNS proxy.