PHP related paths and modification methods in Ubuntu environment

PHP related paths and modification methods in Ubuntu environment

PHP related paths in Ubuntu environment

  1. PHP path /usr/bin/php
  2. phpize5 /usr/bin/phpize5
  3. php5-fpm /usr/sbin/php5-fpm
  4. All php configuration files /etc/php5/fpm
  5. Restart php-fpm sudo kill -USR2 `cat /var/run/php5-fpm.pid`

How to change the development directory path of PHP in Apache2 in Ubuntu

After installing PHP and Apache,
How to set the development directory to the desired one?

The default development directory address: /var/www

Change:sudo vim /etc/apache2/sites-available/default

Change the two /var/www in it to the directory you want, mine is /home/dev/www

Or create a symbolic link under /home/dev:

ln -s www /var/www (note that www cannot exist in /home/dev)

Then change the permissions: sudo chmod 777 /var/www

Start apache2

sudo /etc/init.d/apache2 restart

OK!
You can write a script to test it! ! !

Modify the default root directory of the website under Ubuntu10 Apache2 php5

Modify the default document directory of apache2 in ubuntu10.10. The default directory is in /var/www
sudo gedit /etc/apache2/sites-enabled/000-default
Find DocumentRoot in the document and modify the directory where you want to place the web page files.

as follows:

<VirtualHost *:80>
	ServerAdmin webmaster@localhost
	DocumentRoot /var/www/
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow, deny
		allow from all
	</Directory>
	ScriptAlias ​​/cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow, deny
		Allow from all
	</Directory>
	ErrorLog ${APACHE_LOG_DIR}/error.log
 
	# Possible values ​​include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn
	CustomLog ${APACHE_LOG_DIR}/access.log combined
  Alias ​​/doc/ "/usr/share/doc/"
  <Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
  </Directory>
</VirtualHost>
<VirtualHost *:8080>
	DocumentRoot /var/www/
</VirtualHost>

The last step is to restart apache

sudo /etc/init.d/apache2 restart

Ubuntu modifies the web root directory

Change the default document root directory
The default directory for Ubuntu is /var/www/html
Need to modify /setc/apache2/sites-enabled/000-default.conf
DocumentRoot /var/www/XXX is enough. Of course, you also need to set permissions, so you can check Ubuntu permission settings

Ubuntu permission settings

How to use chmod in Ubuntu (using numbers to assign permissions)

Essential

Ubuntu file permissions are divided into read, write, and execute according to the number. According to the binary assignment, the number 4 represents the read permission-------'r'
The number 2 represents write permission------'w'
The number 1 represents the execution permission------'x'
The number 0 means no permissions----'-'

File permissions are divided into user, group user, and other

'123' '1' represents the user, '2' represents the group user, and '3' represents other basic commands to learn and view file permissions
ls -ld file name // view file permissions
ls -l //View the permissions of all files in the folder and set the permissions of the files
chmod 777 filename //7 = 1 + 2 + 4 So the file permissions are read, write, and executable for all roles
chmod 124 file name //Users have execution permissions, group users have write permissions, and others have read permissions. Set permissions for all files in the folder.
chmod -R 777 file //All permissions under the file are changed to 7

Ubuntu Modify Apache2 website root directory and default web page

  1. Modify the root directory:
    Modify 000-default.conf in /etc/apache2/sites-available
    Change DocumentRoot /var/www/ in the directory to the desired directory, for example: DocumentRoot /var/www/html/dokuwiki
    Restart after modification: sudo /etc/init.d/apache2 restart

  2. To modify the default web page:
    Modify the content in /etc/apache2/mods-available/dir.conf:

<IfModule mod_dir.c>
  DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>

Add the desired files or paths, the priority is to read from the beginning to the end (if there is no file, read the next one), such as adding index.php, dokuwiki

<IfModule mod_dir.c>
  DirectoryIndex dokuwiki index.php index.html index.cgi index.pl index.php index.xhtml index.htm 
</IfModule>

This is the end of this article about PHP-related paths in Ubuntu environment. For more relevant Ubuntu PHP path content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Vue implements multi-grid input box on mobile terminal

>>:  MySQL 8.0.23 installation super detailed tutorial

Recommend

Detailed explanation of Angular data binding and its implementation

Table of contents Preface What is data binding? T...

MySQL series multi-table join query 92 and 99 syntax examples detailed tutorial

Table of contents 1. Cartesian product phenomenon...

How to set the page you are viewing to not allow Baidu to save its snapshot

Today, when I searched for a page on Baidu, becaus...

Detailed explanation of the basic use of Apache POI

Table of contents Basic Introduction Getting Star...

Vue calls the PC camera to realize the photo function

This article example shares the specific code of ...

JavaScript to achieve fireworks effects (object-oriented)

This article shares the specific code for JavaScr...

28 Famous Blog Redesign Examples

1. WebDesignerWall 2. Veerle's Blog 3. Tutori...

Problems with using wangeditor rich text editing in Vue

wangEditor is a web rich text editor developed ba...

The difference between float and position attributes in CSS layout

CSS Layout - position Property The position attri...

Gojs implements ant line animation effect

Table of contents 1. Gojs Implementation 1. Drawi...

CSS border adds four corners implementation code

1.html <div class="loginbody"> &l...

Detailed explanation of Nginx access restriction configuration

What is Nginx access restriction configuration Ng...

idea combines docker to realize image packaging and one-click deployment

1. Install Docker on the server yum install docke...