Skip to content

Commit dc8671f

Browse files
Update configure-nginx.md (#405)
Corrects the command to disable a site (by removing the symlink in `/etc/nginx/sites-enabled/<site-name>`). Command should be (for the example default site): `$ sudo rm /etc/nginx/sites-enabled/default`
1 parent 3d75ad1 commit dc8671f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

how-to/web-services/configure-nginx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ $ sudo ln -s /etc/nginx/sites-available/<your-domain> /etc/nginx/sites-enabled/
8080
To disable a website, you can delete the symlink in `sites-enabled`. For example, once you have your new site(s) configured and no longer need the default site configuration:
8181

8282
```bash
83-
$ sudo rm /etc/nginx/sites-available/default
83+
$ sudo rm /etc/nginx/sites-enabled/default
8484
```
8585

8686
## SSL and HTTPS

0 commit comments

Comments
 (0)