您好,我已经创建了laravel API,这是我的后端应用程序。我正在使用laradock。我也想将我用React创建的字体结束应用程序泊坞窗化。所以现在这是两个单独的项目。基本上我想在一个服务器上运行两个应用程序。
我不确定什么是最好的方法。
我应该启动节点容器,然后编辑default.conf文件(添加虚拟主机),我当前的default.conf是
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
server_name localhost;
root /var/www/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;
}
}
我不确定这是最好的方法,任何建议是否会得到赞赏