0

Is it possible to configure the Fuseki server to run over HTTPS?

Currently: http://mylinuxbox:3030/ <-- OK

Desired: https://mylinuxbox:3030/ <-- results in error

Justas
  • 5,718
  • 2
  • 34
  • 36
  • 2
    here is a discussion about this on the jena users list for Fuseki v2 (development). For Fuseki1, you define it via the Jetty configuration setup. --jetty-config= Also see http://stackoverflow.com/questions/28119849/how-to-configure-a-jetty-ssl-connector-under-fuseki – AndyS Feb 04 '15 at 09:07
  • 3
    Another way is to put a reverse proxy in and put Fuseki behind that. If you already know how to set up httpd/nginx/... for https, that might be easier. – AndyS Feb 04 '15 at 09:30

1 Answers1

1

AndyS's comments, which seem like they probably answer the question:

here is a discussion about this on the jena users list for Fuseki v2 (development). For Fuseki1, you define it via the Jetty configuration setup. --jetty-config=

Another way is to put a reverse proxy in and put Fuseki behind that. If you already know how to set up httpd/nginx/... for https, that might be easier.

Joshua Taylor
  • 84,998
  • 9
  • 154
  • 353