Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- worker_processes 1;
- events {
- worker_connections 1024;
- }
- http {
- server {
- listen 80;
- server_name docker.int.snyderfamily.co;
- root /var/www/html;
- index index.php index.html;
- location / {
- try_files $uri $uri/ =404;
- }
- location ~ \.php$ {
- include fastcgi_params;
- fastcgi_pass php-fpm:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement