Replies: 1 comment
-
Yes |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It is possible to make my Laravel based project accessed without spesific port like
:8000
for example, which is laravel deault port, right?I'm consern about this because i've build some laravel app for my company, and then all of them will deployed to my physical server company because i want to make them just only can be accessed on my company network via ip addresse i.e
10.10.10.10/my-laravel-project
(likephp
project onhtdocs
directory orCodeIgniter
for example).So far, what was i did is, run artisan command:
php artisan serve --host 10.10.10.10 --port 8000
and then it can be accessed onhttp:10.10.10.10:8000
and i want to change it becamehttp://10.10.10.10/my-laravel-project
, it is possible?Beta Was this translation helpful? Give feedback.
All reactions