If your web server uses apache service and use Nginx as a reverse proxy, Nginx configuration file similar to the following example: ## Basic reverse proxy server ## #Hot swap conf -> upstream 81Port_hot_swap_class { server ip:81 weight=10 max_fails=3 fail_timeout=30s;…
Configure Apache Different Port to Use Virtual Hosts on Ubuntu Server
By default, linux apache on use Default document directory is: /var/www The default port is: 80 If you want to publish your own a system resource directory, you can use the following method, execute the following command Setp 1 Add…
Install Zend Framework on Linux Ubuntu
Zend Framework is an open source, object oriented web application framework for PHP 5. Zend Framework is often called a "component library", because it has many loosely coupled components that you can use more or less independently. But Zend Framework…
Modify WordPress Dashboard Login Page without a Plugin
First in your theme functions.php file add the following code // Modify WordPress Dashboard login page function login_enqueue_scripts(){ echo ' '."\n"; } add_action( 'login_enqueue_scripts', 'login_enqueue_scripts' ); Then, according to the above code shows that you want to create a custom-login.css…