Laravel 5.8サイト
https://boss-security-2.herokuapp.com/
Heorkuにデプロイして、作成したこのスクリプトでテストしました
appName='boss-security-2'
echo 'appName =' $appName
# heroku apps
# heroku apps:destroy appName --confirm appName
# ----------------------
echo web: vendor/bin/heroku-php-Apache2 public/ > Procfile
git init
git status
git add -A
git commit -m "Initial commit"
heroku create $appName
heroku git:remote -a $appName
heroku buildpacks:set heroku/php
heroku config:set APP_KEY=9O7AegDFJhVC16jLfNNepT7TEQ7FyFZc
git Push heroku master
heroku apps:info
heroku open
echo "done"
#
私は得続けた
>
このリソースにアクセスする権限がありません
スクリプトに何かwrong?
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"guzzlehttp/guzzle": "~6.0",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0",
"laravelcollective/html": "~5.0",
"nesbot/carbon": "^2.19",
"pusher/pusher-php-server": "^3.4"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-install-cmd": [
"php artisan clear-compiled",
"chmod -R 777 public/"
]
},
}
私はログを確認しました、これを見ました
ディレクトリ/ app /を処理できません:一致するDirectoryIndex(index.php、index.html、index.htm)が見つかりません。サーバー生成のディレクトリインデックスはOptionsディレクティブで禁止されています
Dynoのcomposer.json
にlatestコードがないように見える理由がわかりません。 SSHでログインして確認しました。
heroku ps:exec
これは私のcomposer.lock
と関係がありますか?
おそらく、あなたはリモートのgitリポジトリで間違った権限でディレクトリをプッシュしました
私は試しました http://boss-security-2.herokuapp.com/artisan そしてそれは職人のソースコードを示しています。 (すべきではない)
ルートフォルダの設定を間違えたと思います。
あなたはあなたのcomposer.json
は更新されません。すべての変更をコミットしてプッシュしようとしましたか?
git add -A && git commit -m 'update' && git Push heroku master
次に、SSHを実行して内容を一覧表示します
heroku ps:exec
pwd && ls -la && cat Procfile