在云中部署symfony服务器vps - Ubuntu 16

时间:2017-09-08 15:22:30

标签: .htaccess symfony ubuntu apache2

我使用Apache2,Symfony 2和PHP 7.1。

使用静态IP在VPS中部署Symfony(例如46.101.130.241:8000),无域。

这是我的虚拟目录配置:

enter image description here

.htaccess项目根目录:

enter image description here

运行项目:

$ sudo php app/console server:start 46.101.130.241

结果:

No se puede acceder a este sitio

46.101.130.241 tardó demasiado en responder.
Buscar 101 130 241 8000 en Google
ERR_CONNECTION_TIMED_OUT

感谢。

1 个答案:

答案 0 :(得分:1)

内置的Web服务器,您使用sudo php app/console server:start 46.101.130.241开始的服务器不应该用于生产!!

如果你想尝试一下,你不需要在它面前使用Apache。

可以在official documentation中找到Apache的推荐设置,它要求您安装和配置带有PHP-FPM的mod_php或mod_proxy_fcgi。