mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-11-23 08:54:27 +01:00
cleanup repo
This commit is contained in:
3
examples/nginx-php/README.md
Normal file
3
examples/nginx-php/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# References
|
||||
|
||||
- https://hub.docker.com/_/nginx
|
||||
29
examples/nginx-php/docker-compose.yml
Normal file
29
examples/nginx-php/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
web:
|
||||
image: nginx:latest
|
||||
hostname: nginx
|
||||
volumes:
|
||||
- /mnt/docker-volumes/nginx/www-data:/var/www
|
||||
- /mnt/docker-volumes/nginx/nginx-conf:/etc/nginx/conf.d
|
||||
- /mnt/docker-volumes/nginx/logs:/var/log/nginx
|
||||
links:
|
||||
- php
|
||||
container_name: nginx
|
||||
restart: unless-stopped
|
||||
#labels:
|
||||
# - traefik.enable=true
|
||||
# - traefik.http.routers.nginx.rule=Host(`nginx.example.com`)
|
||||
# - traefik.http.services.nginx.loadbalancer.server.port=80
|
||||
# - traefik.docker.network=proxy
|
||||
# # Part for local lan services only
|
||||
# #- traefik.http.routers.nginx.middlewares=error-pages-middleware@docker
|
||||
php:
|
||||
image: php:8-fpm-alpine
|
||||
hostname: php
|
||||
volumes:
|
||||
- /mnt/docker-volumes/nginx/www-data:/var/www
|
||||
container_name: php
|
||||
restart: unless-stopped
|
||||
working_dir: /var/www
|
||||
30
examples/nginx-php/nginx.conf
Normal file
30
examples/nginx-php/nginx.conf
Normal file
@@ -0,0 +1,30 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name nginx.example.com;
|
||||
root /var/www/;
|
||||
index index.html index.php;
|
||||
|
||||
#error_page 404 /error/404.html;
|
||||
|
||||
client_max_body_size 10M; # change this
|
||||
set_real_ip_from 172.16.0.0/12;
|
||||
set_real_ip_from 192.168.0.0/16;
|
||||
real_ip_header X-Forwarded-For;
|
||||
proxy_hide_header X-Powered-By;
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass php:9000;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PHP_VALUE "error_log=/etc/nginx/conf.d/php_error.log";
|
||||
fastcgi_buffers 16 16k;
|
||||
fastcgi_buffer_size 32k;
|
||||
include fastcgi_params;
|
||||
}
|
||||
|
||||
server_tokens off;
|
||||
etag off;
|
||||
}
|
||||
Reference in New Issue
Block a user