I set up a Virtuoso RDF store on a cloud server.
When I checked the service description from the command line, the following RDF was returned.
Command
curl -L -H "Accept: text/turtle" "https://xxx.xxx.xxx.co.jp/sparql"
Response
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns1: <http://localhost:8890/sparql#> .
@prefix sd: <http://www.w3.org/ns/sparql-service-description#> .
ns1:service rdf:type sd:Service .
@prefix ns3: <http://localhost:8890/> .
ns1:service sd:endpoint ns3:sparql ;
sd:feature sd:DereferencesURIs ,
sd:UnionDefaultGraph .
@prefix formats: <http://www.w3.org/ns/formats/> .
ns1:service sd:resultFormat formats:SPARQL_Results_JSON ,
formats:SPARQL_Results_XML ,
formats:Turtle ,
formats:N-Triples ,
formats:N3 ,
formats:RDF_XML ,
formats:SPARQL_Results_CSV ,
formats:RDFa ;
sd:supportedLanguage sd:SPARQL10Query ;
sd:url ns3:sparql .
I would like to change the DNS name from http://localhost:8890 explained in ns1 and ns3 to https://xxx.xxx.xxx.co.jp/sparql. Please tell me how to set it up.