Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,19 +116,6 @@ See [Running Solid behind a reverse proxy](https://github.com/solid/node-solid-s

> To use Gmail you may need to configure ["Allow Less Secure Apps"](https://www.google.com/settings/security/lesssecureapps) in your Gmail account unless you are using 2FA in which case you would have to create an [Application Specific](https://security.google.com/settings/security/apppasswords) password. You also may need to unlock your account with ["Allow access to your Google account"](https://accounts.google.com/DisplayUnlockCaptcha) to use SMTP.

### Run the Linked Data Platform (intermediate)
If you don't want WebID Authentication and Web Access Control, you can run a simple Linked Data Platform.

```bash
# over HTTP
$ solid start --port 8080 --no-webid
# over HTTPS
$ solid start --port 8080 --ssl-key key.pem --ssl-cert cert.pem --no-webid
```

**Note:** if you want to run on HTTP, do not pass the `--ssl-*` flags, but keep `--no-webid`


### Extra flags (expert)
The command line tool has the following options

Expand Down
6 changes: 6 additions & 0 deletions bin/lib/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,17 @@ function bin (argv, server) {
// Set up port
argv.port = argv.port || 3456

// Multiuser with no webid is not allowed

// Webid to be default in command line
if (argv.webid !== false) {
argv.webid = true
}

if (!argv.webid && argv.multiuser) {
throw new Error('Server cannot operate as multiuser without webids')
}

// Signal handling (e.g. CTRL+C)
if (process.platform !== 'win32') {
// Signal handlers don't work on Windows.
Expand Down