ya casi listo

This commit is contained in:
tavo-wasd 2023-10-30 21:51:29 -06:00
parent 9d3b0c237f
commit b836fc9c41
27 changed files with 127 additions and 51 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

View file

@ -1,9 +0,0 @@
+++
image = "foto.jpg"
title = "Playa y sombrero en mano"
type = "gallery"
+++
"La brisa de la playa y el calor del sol en mi cara.
Solo yo, mi fiel sombrero y la tranquilidad infinita del océano.
Pura felicidad"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

View file

@ -1,8 +0,0 @@
+++
image = "foto.jpg"
title = "En medio de la naturaleza"
type = "gallery"
+++
"En medio del encantador abrazo de la naturaleza,
una foto para recordar buenos tiempos"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

View file

@ -1,8 +0,0 @@
+++
image = "foto.jpg"
title = "Ritmo vibrante de la noche"
type = "gallery"
+++
"En el ritmo vibrante de la noche,
vestido para una importante celebración"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

View file

@ -1,8 +0,0 @@
+++
image = "foto.jpg"
title = "Unión"
type = "gallery"
+++
"Los momentos más importantes y preciados, son a veces
los más simples"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 KiB

View file

@ -1,8 +0,0 @@
+++
image = "foto.jpg"
title = "En un abrir y cerrar de ojos"
type = "gallery"
+++
"Este momento es realmente emotivo y para siempre
recordará el maravilloso logro de crear una familia"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

View file

@ -1,9 +0,0 @@
+++
image = "foto.jpg"
title = "Decisión"
type = "gallery"
+++
"A medida que nuestras manos se entrelazan, se abre un nuevo capítulo.
Adornado con la promesa eterna del amor, con el corazón rebosante de alegría,
entramos en el camino de la unión"

BIN
content/fotos/p08/foto.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View file

@ -0,0 +1,5 @@
+++
image = "foto.jpg"
title = "Paisaje 1 BW"
type = "gallery"
+++

BIN
content/fotos/p09/foto.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

View file

@ -0,0 +1,5 @@
+++
image = "foto.jpg"
title = "Paisaje 2 BW"
type = "gallery"
+++

BIN
content/fotos/p10/foto.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

View file

@ -0,0 +1,5 @@
+++
image = "foto.jpg"
title = "Paisaje 3 BW"
type = "gallery"
+++

BIN
content/fotos/p11/foto.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

View file

@ -0,0 +1,5 @@
+++
image = "foto.jpg"
title = "Paisaje 4 BW"
type = "gallery"
+++

BIN
content/fotos/p12/foto.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

View file

@ -0,0 +1,5 @@
+++
image = "foto.jpg"
title = "Paisaje 5 BW"
type = "gallery"
+++

BIN
content/fotos/p13/foto.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

View file

@ -0,0 +1,5 @@
+++
image = "foto.jpg"
title = "Paisaje 6 BW"
type = "gallery"
+++

View file

@ -0,0 +1,46 @@
---
title: Ejemplo 'reverse proxy' en nginx
date: 2023-10-30
---
La aplicación corriendo en el puerto `8080` en este caso, podrá ser visitada a través de internet
usando el dominio `example.org`, es posible redirigir subdominios.
Entonces, este método permite tener varias aplicaciones escuchando tráfico en diferentes puertos
y redirigir el tráfico de subdominios a las diferentes aplicaciones. Por ejemplo, redirigir
`git.example.org` a un servidor git, y `mumble.example.org` a un servidor de mumble.
### Configuración nginx
Guardar el siguiente archivo de configuración como `/etc/nginx/sites-available/example.org.conf`,
reemplazar `example.org` y `8080` con el dominio y puerto deseados.
```nginx
server {
listen 80;
listen [::]:80;
server_name example.org;
location / {
proxy_pass http://localhost:8080/;
}
}
```
### Activar sitio
```shell
ln -s /etc/nginx/sites-available/example.org.conf /etc/nginx/sites-enabled/
systemctl reload nginx
```
### SSL/TLS
Certbot debería configurar automáticamente los certificados y la configuración de nginx
```shell
certbot --nginx
systemctl reload nginx
```

View file

@ -0,0 +1,50 @@
---
title: Ejemplo configuración de sitio en nginx
date: 2023-10-30
---
### Configuración nginx
Guardar el siguiente archivo de configuración como `/etc/nginx/sites-available/example.org.conf`,
reemplazar `example.org` con el dominio deseado y `examplesite` con el directorio del sitio.
```nginx
server {
listen 80;
listen [::]:80;
server_name example.org;
root /var/www/examplesite;
# Añadir index.php en caso de usar php
index index.html;
location / {
try_files $uri $uri/ =404;
}
# Descomentar en caso de usar php
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
# fastcgi_pass unix:/run/php/php7.4-fpm.sock;
#}
}
```
### Activar el sitio
```shell
ln -s /etc/nginx/sites-available/example.org.conf /etc/nginx/sites-enabled/
systemctl reload nginx
```
### SSL/TLS
Certbot debería configurar automáticamente los certificados y la configuración de nginx
```shell
certbot --nginx
systemctl reload nginx
```

View file

@ -66,7 +66,7 @@ img {
}
.single {
max-height: 60vh;
max-height: 80vh;
max-width: 90vw;
width: auto;
}