Die Applikation ist für nginx nun im Projekt Root und nicht mehr /public

This commit is contained in:
bmen 2019-09-16 17:50:31 +02:00
parent 66439a6b31
commit 96dbee3a12
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ server {
access_log /var/log/nginx/application.access.log;
root /application/public;
root /application;
index index.php;
if (!-e $request_filename) {
@ -22,5 +22,5 @@ server {
fastcgi_buffer_size 32k;
include fastcgi_params;
}
}