Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| linux:lampp [2025/06/02 21:23] – external edit 127.0.0.1 | linux:lampp [2026/04/25 12:19] (current) – removed mh | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== LAMPP local server ====== | ||
| - | |||
| - | ==== Deploy a local application ==== | ||
| - | |||
| - | === Multiple users === | ||
| - | |||
| - | Create a gitusers group, join the required users to the group and give ownership of //htdocs// folder to the group | ||
| - | |||
| - | <code bash> | ||
| - | $groupadd gitusers | ||
| - | $usermod -a -G gitusers USER | ||
| - | $cd /opt/lampp | ||
| - | $chown root.gitusers htdocs | ||
| - | $chmod 755 htdocs | ||
| - | </ | ||
| - | |||
| - | === Single users === | ||
| - | |||
| - | Just give ownership of the //htdocs// folder to desired user | ||
| - | |||
| - | <code bash> | ||
| - | $cd /opt/lampp | ||
| - | $chown mh.mh htdocs | ||
| - | </ | ||
| - | |||
| - | Inside / | ||
| - | |||
| - | <code bash> | ||
| - | $git clone ssh: | ||
| - | </ | ||
| - | |||
| - | Access the module with the url : localhost/ | ||
| - | ===== Ressources ===== | ||
| - | |||
| - | [[https:// | ||