User Tools

Site Tools


сервис_http

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
сервис_http [2022/01/19 14:06]
val [Статический документ]
сервис_http [2022/09/25 09:58]
val [NGINX]
Line 111: Line 111:
 </​code>​ </​code>​
  
 +==== Изменение порта ====
 +
 +  * [[https://​www.tecmint.com/​change-apache-port-in-linux/​|How to Change Apache HTTP Port in Linux]]
 ==== Свойство Indexes каталогов ==== ==== Свойство Indexes каталогов ====
  
Line 862: Line 865:
  
 # service nginx configtest # service nginx configtest
- 
 # tail /​var/​log/​nginx/​error.log # tail /​var/​log/​nginx/​error.log
 +
 +  или
 +
 +# nginx -t -c /​etc/​nginx/​nginx.conf
 +
  
 # service nginx restart # service nginx restart
Line 886: Line 893:
 </​code><​code>​ </​code><​code>​
 # ln -s /​etc/​nginx/​sites-available/​myapp1 /​etc/​nginx/​sites-enabled/​myapp1 # ln -s /​etc/​nginx/​sites-available/​myapp1 /​etc/​nginx/​sites-enabled/​myapp1
 +</​code><​code>​
 +root@gate.corp13.un:​~#​ cat /​var/​opt/​gitlab/​nginx/​conf/​my.conf
 +</​code><​code>​
 +    upstream myapp1 {
 +        server node1:​30111;​
 +        server node2:​30111;​
 +        server node3:​30111;​
 +    }
 +
 +    server {
 +        listen 85;
 +        server_name webd.corp13.un;​
 +
 +        location / {
 +            proxy_pass http://​myapp1;​
 +        }
 +    }
 +</​code><​code>​
 +root@gate.corp13.un:​~#​ /​opt/​gitlab/​embedded/​sbin/​nginx -p /​var/​opt/​gitlab/​nginx -t
 +</​code><​code>​
 +root@gate.corp13.un:​~#​ gitlab-ctl restart nginx
 </​code>​ </​code>​
сервис_http.txt · Last modified: 2024/05/24 09:20 by val