ホームページ  >  記事  >  PHPフレームワーク  >  Laravel OctaneとWebSocketのnginx設定をLaradockで共有する

Laravel OctaneとWebSocketのnginx設定をLaradockで共有する

藏色散人
藏色散人転載
2023-02-14 11:20:291524ブラウズ

この記事では、Laravel Octaneのnginx設定やLaradockのWebSocketを中心に、Laravelに関する知識を紹介していますので、ご興味のある方は以下をご覧ください。

Laravel OctaneとWebSocketのnginx設定をLaradockで共有する

docker laradock と Laravel Octane のインストールについては、ここでは詳しく説明しません。

前の説明

Laravel Octaneをlaradockにインストールした後、swooleが起動し、nginxでのポートアクセス接続の設定に失敗します。エラー メッセージ 502、構成は次のとおりです:

location /octane {
    proxy_pass http://127.0.0.1:8080;}

原因: Swoole サーバーはワークスペース コンテナーで実行され、Nginx サーバーは Nginx コンテナーで実行されます。ワークスペースの IP を見つけて nginx で構成する必要があります。

解決策

  • docker ps ワークスペース コンテナーの ID を表示します。

  • docker はコンテナ ID を検査し、NetworksIPAddress を見つけます。

  • nginx 構成ファイルを変更します。

    map $http_upgrade $connection_upgrade {
     default upgrade;
     ''      close;}
    upstream ws {
     server 172.22.0.4:9502 weight=5 max_fails=3 fail_timeout=30s;}
    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;}
  • nginx を再起動します。

設定ファイル

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;}

推奨学習:「laravelビデオチュートリアル

以上がLaravel OctaneとWebSocketのnginx設定をLaradockで共有するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はlearnku.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。