Symfony + Nginx + Proxy_pass + Подкаталог: Как переписать URL? - PullRequest
0 голосов
/ 12 февраля 2019

Я пытаюсь немного выйти из своей зоны комфорта как программист и пытаюсь выполнить полную настройку с веб-сервера.Я мог бы сделать это с помощью Apache, но мне нужно использовать proxy_pass, потому что у меня есть несколько API golang.Проведя некоторые исследования, я понял, что смогу получить лучшие тесты, если бы я также настроил прокси для своего приложения Symfony:

Но для запуска этого приложения Symfony мне нужно использовать подкаталог.До сих пор мне удалось запустить golang и Symfony через proxy_pass в ngnix, но Symfony не переписал маршруты:

Итак, когда я получаю доступ к http://myip/MYSUBDIR/app_dev.php/myroute всем (фоновым) загруженным URL-адресам (для файлов, сценариев, запросов ajax и т. д.), например, http://myip/app_dev.php/myroute

И, конечно, мне нужен «MYSUBDIR» в URL!

Как переписать URL, чтобы решить моюпроблема ???

Я запускаю Ubuntu 18.04 на vps, php fpm 7.3 и nginx / 1.14.0 (Ubuntu)

Symfony на v3.4

/etc / nginx / sites-avaliable / default

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/html;

    # Add index.php to the list if you are using PHP
    index index.html index.htm index.nginx-debian.html;

    server_name _;

    location / {

        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;

        fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
    }

    location /MYSUBDIR/ {



        proxy_pass http://127.0.0.1:8080/;
        proxy_cache mysubdir_cache_setup;
        proxy_cache_key "$scheme://$host$request_uri";
        proxy_cache_lock on;
        proxy_cache_use_stale updating error timeout http_500 http_502 http_503 http_504;
        add_header X-Cache $upstream_cache_status;

        error_log /var/log/nginx/mysubdir_cache_error.log;
        access_log /var/log/nginx/mysubdir_cache_access.log;
    }

    location /phpmyadmin {
            index index.php index.html index.htm;
            root /usr/share;
    }

    location /goapi/ {

            proxy_pass http://127.0.0.1:9003/;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection 'upgrade';
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP  $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_cache_bypass $http_upgrade;
     }
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one

    location ~ /\.ht {
        deny all;
    }
}

и # / etc / nginx / sites-available / mysubdir

server {


    listen 8080;

    server_name localhost 127.0.0.1;

    root /var/www/html/mysubdir/web;

    location / {
        # try to serve file directly, fallback to app.php
        try_files $uri /app.php$is_args$args;
    }
    # DEV
    # This rule should only be placed on your development environment
    # In production, don't include this and don't deploy app_dev.php or config.php
    location ~ ^/(app_dev|config)\.php(/|$) {
        fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
        # When you are using symlinks to link the document root to the
        # current version of your application, you should pass the real
        # application path instead of the path to the symlink to PHP
        # FPM.
        # Otherwise, PHP's OPcache may not properly detect changes to
        # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
        # for more information).
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
    }
    # PROD
    location ~ ^/app\.php(/|$) {
        fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
       # When you are using symlinks to link the document root to the
       # current version of your application, you should pass the real
       # application path instead of the path to the symlink to PHP
       # FPM.
       # Otherwise, PHP's OPcache may not properly detect changes to
       # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
       # for more information).
       fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
       fastcgi_param DOCUMENT_ROOT $realpath_root;
       # Prevents URIs that include the front controller. This will 404:
       # http://domain.tld/app.php/some-path
       # Remove the internal directive to allow URIs like this
       internal;
   }

   # return 404 for all other php files not matching the front controller
   # this prevents access to other php files you don't want to be accessible.
   location ~ \.php$ {
     return 404;
   }

   error_log /var/log/nginx/mysubdr_error.log;
   access_log /var/log/nginx/mysubdr_access.log;
}

Конечно, оба файла правильно связаны на ../sites-enabled /

phpmydmin и goapi местоположения работают нормально

Пожалуйста, как я могу решить эту проблему?!

...