Try to set SOLID_MULTIUSER=true. I do not know SOLID_SERVER_NAME only SOLID_SERVER_URI
That worked thanks. If I register I see the user is added to /opt/solid/data.
Then secondly, is there another way maybe to edit the .well-known/openid-configuration
? This is what it looks like now, but it should be like this right?
Yes your assumption is correct. It works on my server, see https://angelo.veltens.org/.well-known/openid-configuration, which I achieved by setting SOLID_SERVER_URI, so this should work...
My wild guess is, that you perhaps configured it wrong on first boot and the openid-configuration got created with wrong values, so you might try recreating the container & volumes from scratch
https://github.comm/solid/node-solid-server
and related repos have been moved to a new github organization https://github.com/nodeSolidServer/
.(Logged in as <https://bourgeoa.solidcommunity.net/profile/card#me> by authentication)
SolidLogic.js:117 loadProfile me m {termType: 'NamedNode', classOrder: 5, value: 'https://bourgeoa.solidcommunity.net/profile/card#me'}
SolidLogic.js:117 loadProfile me m {termType: 'NamedNode', classOrder: 5, value: 'https://bourgeoa.solidcommunity.net/profile/card#me'}
SolidLogic.js:152 loadPreferences cache {profileDocument: {…}, preferencesFile: {…}}
SolidLogic.js:117 loadProfile me m {termType: 'NamedNode', classOrder: 5, value: 'https://bourgeoa.solidcommunity.net/profile/card#me'}
SolidLogic.js:152 loadPreferences cache {profileDocument: {…}, preferencesFile: {…}}
SolidLogic.js:117 loadProfile me m {termType: 'NamedNode', classOrder: 5, value: 'https://bourgeoa.solidcommunity.net/profile/card#me'}
SolidLogic.js:117 loadProfile me m {termType: 'NamedNode', classOrder: 5, value: 'https://bourgeoa.solidcommunity.net/profile/card#me'}
SolidLogic.js:152 loadPreferences cache {profileDocument: {…}, preferencesFile: {…}}
SolidLogic.js:117 loadProfile me m {termType: 'NamedNode', classOrder: 5, value: 'https://bourgeoa.solidcommunity.net/profile/card#me'}
Hello, I have a question about how to make a patch in n3 in the resource below. I need to change the 'vcard:locality' predicate and I don't know how to write the patch. I haven't seen examples with blank nodes.
@prefix : <#>.
@prefix rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#.
@prefix vcard: http://www.w3.org/2006/vcard/ns#.
@prefix vcards: </./>.
vcards: test
a vcard:VCard;
vcard:adr
[
vcard:Work;
vcard:locality "WonderCity";
vcard:postal-code "5555";
vcard:street-address "33 Enterprise Drive"
].
@daraujo-liberson - given
@prefix : <#>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.
[] a vcard:Individual; vcard:fn "Foo".
This patch changes the name of the blank node :
@prefix solid: <http://www.w3.org/ns/solid/terms#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.
<> a solid:InsertDeletePatch ;
solid:where {?card a vcard:Individual.};
solid:deletes {?card vcard:fn "Foo".};
solid:inserts {?card vcard:fn "Bar".}.