How to change apache port in plesk and enable nginx
- Category : Linux Helpline (Easy Guide)
 - Posted on : May 10, 2019
 - Views : 2,428
 - By : Marcus J.
 

You can change Apache web server port to use a lightweight high-performance web server, such as nginx, as a front-end web server, and move Apache web server to back-end.
To change Apache web server port, use the websrvmng utility with the following options:
- –set-http-port – set a custom http port;
 - –get-http-port – get a custom http port;
 - –set-https-port – set a custom https port;
 - –get-https-port – get a custom https port.
 
To change Apache web server http port to 8888, issue the following command:
# /usr/local/psa/admin/sbin/websrvmng --set-http-port --port=8888 # /usr/local/psa/admin/sbin/websrvmng --reconfigure-all # /usr/local/psa/admin/sbin/webmailmng --disable --name=horde # /usr/local/psa/admin/sbin/webmailmng --enable --name=horde # /usr/local/psa/admin/sbin/webmailmng --disable --name=atmail # /usr/local/psa/admin/sbin/webmailmng --enable --name=atmail # /usr/local/psa/admin/sbin/webmailmng --disable --name=atmailcom # /usr/local/psa/admin/sbin/webmailmng --enable --name=atmailcom
You can add vhost for a domain in nginx as follows in plesk,
# cat /etc/nginx/vhost.template
server {
listen 80;
server_name <domain.name> www.<domain.name>;
access_log /var/log/nginx/<domain.name>.access.log main;
#Main location
location / {
proxy_pass http://<domain.name>:8080/;
proxy_redirect default;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
open_file_cache max=1024 inactive=600s;
open_file_cache_valid 2000s;
open_file_cache_min_uses 1;
open_file_cache_errors on;
}
# Static files location
location ~* ^.+\.(jpg|jpeg|gif|png|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|wav|bmp|rtf|js|ico|swf)$ {
root /var/www/vhosts/<domain.name>/httpdocs;
expires 30d;
}
}Categories
- cPanel Question 47
 - cPanel Software Management 29
 - cPanel Tutorials 13
 - Development 29
 - Domain 13
 - General 19
 - Linux Helpline (Easy Guide) 156
 - Marketing 47
 - MySQL Question 13
 - News 2
 - PHP Configuration 14
 - SEO 42
 - SEO 4
 - Server Administration 84
 - SSL Installation 54
 - Tips and Tricks 24
 - VPS 3
 - Web Hosting 44
 - Website Security 22
 - WHM questions 13
 - WordPress 148
 
Subscribe Now
10,000 successful online businessmen like to have our content directly delivered to their inbox. Subscribe to our newsletter!Archive Calendar
| Sat | Sun | Mon | Tue | Wed | Thu | Fri | 
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 
| 8 | 9 | 10 | 11 | 12 | 13 | 14 | 
| 15 | 16 | 17 | 18 | 19 | 20 | 21 | 
| 22 | 23 | 24 | 25 | 26 | 27 | 28 | 
| 29 | 30 | |||||
Recent Articles
-  

Posted on : Sep 17
 -  

Posted on : Sep 10
 -  

Posted on : Aug 04
 -  

Posted on : Apr 01
 
Tags
- ts
 - myisam
 - vpn
 - sql
 - process
 - kill
 - tweak
 - server load
 - attack
 - ddos mitigation
 - Knowledge
 - layer 7
 - ddos
 - webmail
 - DMARC
 - Development
 - nginx
 - seo vpn
 - Hosting Security
 - wireguard
 - innodb
 - exim
 - smtp relay
 - smtp
 - VPS Hosting
 - cpulimit
 - Plesk
 - Comparison
 - cpu
 - encryption
 - WHM
 - xampp
 - sysstat
 - optimize
 - cheap vpn
 - php-fpm
 - mariadb
 - apache
 - Small Business
 - Error
 - Networking
 - VPS
 - SSD Hosting
 - Link Building
 - centos
 - DNS
 - optimization
 - ubuntu
 






