You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -56,12 +50,6 @@ Add a new queue connection to `config/queue.php`
56
50
],
57
51
```
58
52
59
-
If you are using separate services for dispatching and handling tasks, and your application only dispatches jobs and should not be able to handle jobs, you may disable the task handler from `config/cloud-tasks.php`:
Finally, change the `QUEUE_CONNECTION` to the newly defined connection.
66
54
67
55
```dotenv
@@ -86,6 +74,18 @@ Please check the table below on what the values mean and what their value should
86
74
87
75
</details>
88
76
77
+
Optionally, you may publish the config file:
78
+
79
+
```console
80
+
php artisan vendor:publish --tag=cloud-tasks
81
+
```
82
+
83
+
If you are using separate services for dispatching and handling tasks, and your application only dispatches jobs and should not be able to handle jobs, you may disable the task handler from `config/cloud-tasks.php`:
Read [UPGRADING.MD](UPGRADING.md) on how to update versions.
199
+
200
+
### Troubleshooting
201
+
202
+
#### HttpRequest.url must start with 'https://'
203
+
204
+
This can happen when your application runs behind a reverse proxy. To fix this, add the application domain to Laravel's [trusted proxies](https://laravel.com/docs/11.x/requests#trusting-all-proxies). You may need to add the wildcard `*` as trusted proxy.
0 commit comments