This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git reset --hard <full_hash_of_commit_to_reset_to> | |
git push --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server.port=8443 | |
security.require-ssl=true | |
server.ssl.key-store-type=PKCS12 | |
server.ssl.key-store=/home/../springboot.p12 (Esto es la ubicacion en donde esta la llave .p12) | |
server.ssl.key-store-password=password | |
server.ssl.key-alias=nombreAlias |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* @param page | |
* @param size | |
* @param search | |
* @param orderBy | |
* @param orientation | |
* @param includeInactive | |
* @return | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn install:install-file -Dfile=<path-to-file/icarus-theme-1.1.3.jar> -DgroupId=org.primefaces.themes -DartifactId=icarus -Dversion=1.1.3 -Dpackaging=jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn install:install-file -Dfile=<path-to-file/icarus-theme-1.1.3.jar> -DgroupId=org.primefaces.themes -DartifactId=icarus -Dversion=1.1.3 -Dpackaging=jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws --endpoint-url=http://localhost:4566 secretsmanager create-secret --name testSecret --secret-string 'secret' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
{{employees |json}} | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName nombre_dominio | |
ServerAlias nombre_dominio | |
DocumentRoot /var/www/nombre_dominio | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
RewriteEngine on | |
RewriteCond %{SERVER_NAME} = nombre_dominio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM COBERTURAS c | |
ORDER BY c.ID | |
LIMIT (:current_page - 1) * :rows_per_page,:rows_per_page; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/jdk8/bin/java" 1 | |
sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/local/jdk8/bin/javac" 1 | |
sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/local/jdk8/bin/javaws" 1 | |
# Seleccionar version de java a utilizar | |
update-alternatives --config java |
NewerOlder