Answer the question
In order to leave comments, you need to log in
How to set up nginx as a frontend?
Hello, please tell me, I'm trying to install nginx as a frontend, I
moved Apache to port 8080 in httpd.conf
in /etc/nginx/conf.d/default.conf
changed
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location / {
proxy_pass 127.0.0.1:8080/;
}
proxy_redirect off;
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;
location / {
proxy_pass 127.0.0.1:8080/;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question