Skip to content
Advertisement

Issues with static files – hosting PHP app under subdirectory using nginx

I’m part of a new team on an existing product and the PO wishes for a demo version available under domain.com/demo. The webserver has an nginx setup configured by the previous team.

I am not very familiar with nginx but followed this tutorial in order to setup a demo environment. It seems to be working except that static files (images, css) are still served from the production environment.

We are using a symlinked automated demployment system under /var/www/app/current and /var/www/demoapp/current. The nginx config looks like this:

JavaScript

When I SSH in to the server, I can see our automated deployment system is working and the new CSS that should be available on the website is compiled under /var/www/demoapp/current/public/css/. However when I visit the domain.com/demo it shows the same CSS stylesheet as the live version.

There was also an issue with the demo version not updating PHP and HTML on deployment to the server. This I fixed by reloading the FPM service on every deployment, however I suspect it might also have to do with the nginx configuration.

Any help for either of these issues would be greatly appreciated.

Advertisement

Answer

The issue ended up not being nginx related. It was fixed by changing every occurance of

<link href="{{ mix('css/dashboard.css') }}" rel="stylesheet">

to

<link href="{{ asset('css/dashboard.css') }}" rel="stylesheet">.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement