Bonjour, je n'arrive pas à avoir la page d'accueil de laravel par le nom de domaine
et avec l'IP çà donne ça No input file specified.

Je passe par un serveur virtuel sous VirtualBox installer au préalable par vagrant
Voici le fichier de configuration

Homestead.yaml

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
 
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
 
authorize: ~/.ssh/id_rsa.pub
 
keys:
    - ~/.ssh/id_rsa
 
folders:
    - map: ~/code
      to: /home/vagrant/code
 
sites:
    - map: homestead.test
      to: /home/vagrant/code/homestead/public
    - map: lesquestions.test
      to: /home/vagrant/code/lesquestions/public
    - map: php.test
      to: /home/vagrant/code/php
 
 
databases:
    - tuto
 
features:
    - mysql: true
    - mariadb: false
    - postgresql: false
    - ohmyzsh: false
    - webdriver: false
 
#services:
#    - enabled:
#        - "postgresql@12-main"
#    - disabled:
#        - "postgresql@11-main"
 
# ports:
#     - send: 50000
#       to: 5000
#     - send: 7777
#       to: 777
#       protocol: udp
Merci d'avance & bonne journée