Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SSHFS SERVER
- Crear particion
- Formatear particion
- montar directorio '/mnt/webserver'
- Crear usuario 'sshfsuser'
- useradd -s /bin/bash -d /mnt/webserver -m sshfsuser
- configuar el montaje automatico.
- Servidor web.
- Punto de montaje entre el directorio remoto y el directorio que tendra la pagina, por ejemplo 'sshfsserver /mnt/webserver > Servidor web /var/www/pagina'.
- Configurar el montaje automatico.
- Configurar el virtual host de apache teniendo encuenta el DocumentRoot y el ServerName.
- Balanceador de cargas
- upstream backend {
- servidores;
- }
- server {
- listen 80;
- server_name _;
- location / {
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_pass http://backend;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement