kalske borec, domena take 1

This commit is contained in:
Milan Toman
2024-02-06 21:58:26 +01:00
commit b6af8d7127
24 changed files with 280 additions and 0 deletions

20
config/nginx.d/nginx.conf Normal file
View File

@@ -0,0 +1,20 @@
server {
listen 81 default_server;
root /app;
index index.php index.html index.htm;
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
#server {
# listen 82 default_server;
# root /app/master/www;
# index index.php index.html index.htm;
# location ~ \.php$ {
# fastcgi_pass php:9000;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# include fastcgi_params;
# }
#}