-
Notifications
You must be signed in to change notification settings - Fork 306
Description
There should be a certificate with a webid in it created with the admin signup stored in the browser. It may have worked in the past, but not now. This is in the context of all exceptions and certificates for localhost previously removed.
To fix the problem temporarily I tried.
Trying openssl pkcs12 -export -out certificate.p12 -inkey localhost.key -in localhost.crt on
the key and cert created with
openssl genrsa 2048 > ../localhost.key
openssl req -new -x509 -nodes -sha256 -days 3650 -key ../localhost.key -subj '/CN=*.localhost' > ../localhost.crt
BUT This DOES NOT WORK
Logic pulled from conversation on linkeddata/gitter with melvin carvalho and dimitri z. as well as the paper Using RDF Metadata to Enable Access Control on the Social Semantic Web section 2.3 (http://dig.csail.mit.edu/2009/Papers/ISWC/rdf-access-control/paper.pdf)