


Share the nginx configuration of Laravel Octane and WebSocket in Laradock
This article brings you relevant knowledge about Laravel, which mainly records the nginx configuration of Laravel Octane and WebSocket in Laradock. For those who are interested, take a look below. I hope it will be helpful to you.
docker Installation of laradock and Laravel Octane will not be described in detail here.
Previous description
After installing Laravel Octane in laradock
, swoole is started, and the port access connection configuration in nginx fails. Error message 502, the configuration is as follows:
location /octane { proxy_pass http://127.0.0.1:8080;}
Cause: Swoole server runs in the Workspace container; Nginx server runs in the Nginx container, you need to find the IP of Workspace and configure it in nginx.
Solution
docker ps
View the id of the Workspace container.docker inspect container id
and findIPAddress
inNetworks
.-
Modify the nginx configuration file.
map $http_upgrade $connection_upgrade { default upgrade; '' close;}
Copy after loginupstream ws { server 172.22.0.4:9502 weight=5 max_fails=3 fail_timeout=30s;}
Copy after loginlocation /ws { set $suffix ""; if ($uri = /index.php) { set $suffix ?$query_string; } proxy_http_version 1.1; proxy_set_header Host $http_host; proxy_set_header Scheme $scheme; proxy_set_header SERVER_PORT $server_port; proxy_set_header REMOTE_ADDR $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_pass http://ws$suffix;}
Copy after login Restart nginx.
Configuration file
map $http_upgrade $connection_upgrade { default upgrade; '' close;}upstream ws { server 172.22.0.4:9502 weight=5 max_fails=3 fail_timeout=30s;}server { listen 80; listen [::]:80; server_name bbs.test; root /var/www/laravel/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php$is_args$args; } location ~ \.php$ { try_files $uri /index.php =404; fastcgi_pass php-upstream; fastcgi_index index.php; fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; #fixes timeouts fastcgi_read_timeout 600; include fastcgi_params; } location ~ /\.ht { deny all; } location /.well-known/acme-challenge/ { root /var/www/letsencrypt/; log_not_found off; } location /ws { set $suffix ""; if ($uri = /index.php) { set $suffix ?$query_string; } proxy_http_version 1.1; proxy_set_header Host $http_host; proxy_set_header Scheme $scheme; proxy_set_header SERVER_PORT $server_port; proxy_set_header REMOTE_ADDR $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_pass http://ws$suffix; } error_log /var/log/nginx/laravel_error.log; access_log /var/log/nginx/laravel_access.log;}
Recommended study: "laravel video tutorial"
The above is the detailed content of Share the nginx configuration of Laravel Octane and WebSocket in Laradock. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

Laravel - Pagination Customizations - Laravel includes a feature of pagination which helps a user or a developer to include a pagination feature. Laravel paginator is integrated with the query builder and Eloquent ORM. The paginate method automatical

Method for obtaining the return code when Laravel email sending fails. When using Laravel to develop applications, you often encounter situations where you need to send verification codes. And in reality...

Laravel schedule task run unresponsive troubleshooting When using Laravel's schedule task scheduling, many developers will encounter this problem: schedule:run...

The method of handling Laravel's email failure to send verification code is to use Laravel...

How to implement the table function of custom click to add data in dcatadmin (laravel-admin) When using dcat...

The impact of sharing of Redis connections in Laravel framework and select methods When using Laravel framework and Redis, developers may encounter a problem: through configuration...

Laravel - Dump Server - Laravel dump server comes with the version of Laravel 5.7. The previous versions do not include any dump server. Dump server will be a development dependency in laravel/laravel composer file.
