How do I remake this nginx config
location / {
try_files /public/$uri @app;
}
location @app {
fastcgi_pass php5-fpm;
}
}
to Apache config?
How do I remake this nginx config
location / {
try_files /public/$uri @app;
}
location @app {
fastcgi_pass php5-fpm;
}
}
to Apache config?