jenaye/enaylal

Nano framework php

Installs: 28

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Language:HTML

Type:project

1.3.0 2016-12-03 21:43 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:24:31 UTC


README

si vous êtes sur wamp, crée un alias dans /wamp64/alias/jenaye-dev.conf

#Require all granted

<VirtualHost jenaye.dev:80>

  ServerAdmin admin@jenaye.dev
  ServerName jenaye.dev
  ServerAlias jenaye.dev
  DocumentRoot "C:/wamp64/www/enaylal/public"

  <Directory "C:/wamp64/www/enaylal/public">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Require all granted
  </Directory>

</VirtualHost>

puis, editez votre fichier hosts (system32/drivers/etc/host)

rajoutez : 127.0.0.1 jenaye.dev

Pour nginx :

server {
  listen  80;
  server_name jenaye.dev;
  location / {
    root   /home/jenaye/dev/php/Enaylal/public;
    index index.php index.html index.html;
     try_files $uri /index.php$is_args$args;
  }

         location ~ \.php$ {
           root   /home/jenaye/dev/php/Enaylal/public;
             fastcgi_pass   unix:/run/php-fpm/php-fpm-jenaye.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
}

}
https://github.com/usmanhalalit/pixie#query