Difference between revisions of "Omen dev"
From Wiki2
Line 16: | Line 16: | ||
or | or | ||
service nginx restart | service nginx restart | ||
when editng files you need to set permissions | |||
chmod 644 info.php | |||
Numeric Readable Explanation | |||
0 --- No access. | |||
1 --x Execute access.* | |||
2 -w- Write access.** | |||
3 -wx Write and execute access.*** | |||
4 r-- Read access. | |||
5 r-x Read and execute access. | |||
6 rw- Read and write access. | |||
7 rwx Read, write and execute access. |
Revision as of 20:18, 21 June 2018
omen development env
references
docker
- https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly
- https://medium.com/@sebagomez/installing-the-docker-client-on-ubuntus-windows-subsystem-for-linux-612b392a44c4
npm
tips
sudo -i sets you as superuser
systemctl doesn't work use
/etc/init.d/php7.0-fpm restart
or
service nginx restart
when editng files you need to set permissions
chmod 644 info.php
Numeric Readable Explanation 0 --- No access. 1 --x Execute access.* 2 -w- Write access.** 3 -wx Write and execute access.*** 4 r-- Read access. 5 r-x Read and execute access. 6 rw- Read and write access. 7 rwx Read, write and execute access.