Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation internal links #1801

Merged
merged 1 commit into from
Jun 12, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ weight: 2

This package is tailor-made for use inside Laravel applications. But with a little bit of good will you can use it to backup non-Laravel applications as well.

To do so install Laravel on the same server where your non-Laravel application runs. In the Laravel app you'll have to install this package using the [installation instructions](/laravel-backup/v8/installation-and-setup). In the `app/config/backup.php`configuration file specify the paths of the non-laravel application you wish to backup in the `backup.source.files.include` key.
To do so install Laravel on the same server where your non-Laravel application runs. In the Laravel app you'll have to install this package using the [installation instructions](/docs/laravel-backup/v8/installation-and-setup). In the `app/config/backup.php`configuration file specify the paths of the non-laravel application you wish to backup in the `backup.source.files.include` key.

Do not forget to configure the database as well. In `app/config/databases.php` put the credentials of the database used by the non-Laravel application.

Expand Down
2 changes: 1 addition & 1 deletion docs/cleaning-up-old-backups/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ Don't forget to specify the full classname of your custom strategy in the `clean

## Get notifications when a cleanup goes wrong

You can receive a notification when a cleanup goes wrong. Read the section on [notifications](/laravel-backup/v8/sending-notifications/overview) for more info.
You can receive a notification when a cleanup goes wrong. Read the section on [notifications](/docs/laravel-backup/v8/sending-notifications/overview) for more info.
4 changes: 2 additions & 2 deletions docs/monitoring-the-health-of-all-backups/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ We recommend setting up a separate Laravel installation to do the monitoring, pr

We also recommend to use a central storage disk, like s3, for your backups when using the monitoring. You can still use monitoring for local disks but you'll have to add the monitoring to the app which runs the backups.

To install the monitor follow the regular [installation instructions](/laravel-backup/v8/installation-and-setup).
To install the monitor follow the regular [installation instructions](/docs/laravel-backup/v8/installation-and-setup).
Instead of scheduling the `backup:run` and `backup:clean` commands, you should schedule the monitor command.

```php
Expand Down Expand Up @@ -70,7 +70,7 @@ the application that is being backed up.
## Get notifications of (un)healthy backups

You can receive notifications when the monitor finds an (un)healthy backup.
Read the section on [notifications](/laravel-backup/v8/sending-notifications/overview) to learn more.
Read the section on [notifications](/docs/laravel-backup/v8/sending-notifications/overview) to learn more.

## Checking all backups

Expand Down
2 changes: 1 addition & 1 deletion docs/taking-backups/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,4 @@ If something goes wrong copying the zip file to one filesystem, the package will
## Get notifications when a backup goes wrong

You can receive a notification when a backup goes wrong. Read
the section on [notifications](/laravel-backup/v8/sending-notifications/overview) to find out more.
the section on [notifications](/docs/laravel-backup/v8/sending-notifications/overview) to find out more.