Bonjour, J’ai du mal a faire ma config docker. Pour le moment je n’arrive pas a faire fonctionner mon projet Symfony. J’ai obtenu une 403.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | version: "3" services: #db: # image: mysql:5.7 # ports: # - "3306:3306" # volumes: # - db_data:/var/lib/mysql # environment: # MYSQL_ROOT_PASSWORD: root # MYSQL_USER: motul # MYSQL_PASSWORD: motul # MYSQL_DATABASE: mmotul web: image: nginx ports: - "65:65" volumes: - "./docker/front/default.conf:/etc/nginx/conf.d/default.conf:ro" - php:/var/www/html php: image: php volumes: - "./docker/php.ini:/usr/local/etc/php/conf.d/php.ini" - "php:/var/www/html" volumes: db_data: php: |
voilà ma config nginx server { listen 65 default_server; listen [::]:65 default_server; server_name localhost;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | index index.php index.html; error_log /var/log/nginx/error.log; access_log /var/log/nginx/access.log; root /var/www/html/; location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass php:9000; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; } } |
Je ne vois pas trop ou allez, pas de bonne tuto pour la version 3 Merci de votre aide, à votre bon coeur M’sieus ’dames.
+0
-0