New:
Rabbit MQ - needed for barker
This commit is contained in:
2
rabbitmq/files/info.php.j2
Normal file
2
rabbitmq/files/info.php.j2
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
phpinfo();
|
||||
19
rabbitmq/files/nginx.conf.j2
Normal file
19
rabbitmq/files/nginx.conf.j2
Normal file
@ -0,0 +1,19 @@
|
||||
server {
|
||||
listen {{ http_port }};
|
||||
root /var/www/html;
|
||||
index index.php index.html index.htm index.nginx-debian.html;
|
||||
server_name {{ http_host }};
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
include snippets/fastcgi-php.conf;
|
||||
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user