要安裝運行laravel5.3 先看一下你的php版本是否是>=5.6 不然就免看了php
先到composer官網手工下載最新版的composer文件 composer.phar 便可html
https://getcomposer.org/download/nginx
或者用命令下載laravel
curl -sS https://getcomposer.org/installer | php
將下載的composer.phar文件 更名爲composer 移動到/usr/local/bin目錄下數據庫
mv composer.phar /usr/local/bin/composer
給composer賦予最高權限,以防止後面的命令出現權限限制瀏覽器
chmod -R 777 /usr/local/bin/composer
用composer安裝 laravel 建立項目名稱爲blog bash
composer create-project laravel/laravel blog 5.3.*
速度有些慢 ,靜靜等待。。。目前我安裝的版本是 v5.3.16服務器
若是你下載困難 能夠經過這個連接直接獲取v5.3.16的下載版本 https://pan.baidu.com/s/1c2Do62Gsession
進入blog目錄或者下載版本的文件目錄 輸入命令php7
php -S localhost:8888 -t public
這段命令的意思是 指定當前目錄的public目錄爲根目錄 開啓8888端口
在瀏覽器打開http://localhost:8888 就能夠看到laravel的啓動頁面了
你也能夠用laravel項目目錄自帶的artisan工具啓動laravel項目
php artisan serve
再次進入項目路徑 執行composer install 安裝項目相關文件
composer install
若是你已經將代碼部署到生產環境
請修改隱藏文件.env, 確保配置正確的數據庫鏈接
給你看一下個人.env文件
送佛送到西 把服務器上nginx的配置也給你看了一下
server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; root /var/www/laravel/public; index index.php index.html index.htm; server_name localhost 10yue.live www.10yue.live; return 301 https://10yue.live$request_uri; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.1-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } server { listen 443; server_name localhost 10yue.live www.10yue.live; root /var/www/laravel/public; index index.php index.html index.htm; ssl on; ssl_certificate /etc/nginx/ssl/1_10yue.live_bundle.crt; ssl_certificate_key /etc/nginx/ssl/yourname_de.key; ssl_session_timeout 5m; ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES"; ssl_prefer_server_ciphers on; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { try_files $uri /index.php =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.1-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }