megavolkan
megavolkan

Reputation: 247

Is it possible deploying Laravel Sail developed project to Apache server?

I’m not too familiar with the server technologies. So my question is is it ok to deploy a project developed under Laravel Sail environment (which uses Nginx as default web server i guess) to a server which runs Apache? Will it work? Should i expect any problems?

Upvotes: 2

Views: 4417

Answers (2)

Sithu
Sithu

Reputation: 4431

I have modified the docker file to work with Sail and Apache for development purpose. You can take a look on Gitlab link here to have some idea for your production environment.

Upvotes: 1

online Thomas
online Thomas

Reputation: 9401

Laravel Sail is not for production. It also doesn't use apache or nginx, but php's build in web server (php artisan serve). So please use your own, or have a look at my config.

Upvotes: 3

Related Questions