2023-02-11 23:08:53 -03:00
|
|
|
server {
|
2023-02-12 12:50:41 -03:00
|
|
|
listen 8080;
|
|
|
|
server_name ${OPEN_SEARCH_HOST_FOR_NGINX} localhost;
|
2023-02-11 23:08:53 -03:00
|
|
|
|
|
|
|
root /var/www/html;
|
|
|
|
index index.php;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.php?$args;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
2023-02-12 13:39:32 -03:00
|
|
|
fastcgi_pass unix:/run/php7/php-fpm7.sock;
|
2023-02-11 23:08:53 -03:00
|
|
|
fastcgi_index index.php;
|
2023-02-12 11:13:58 -03:00
|
|
|
include fastcgi.conf;
|
2023-02-11 23:08:53 -03:00
|
|
|
}
|
|
|
|
}
|