Skip to content

Instantly share code, notes, and snippets.

View alejosv's full-sized avatar
🇨🇷
Meddyg

Alejandro Benavides alejosv

🇨🇷
Meddyg
View GitHub Profile
@alejosv
alejosv / dcm4chee.txt
Created February 5, 2019 16:08 — forked from sunlaixing/dcm4chee.txt
Install DCM4CHEE Archive light 5.x
https://github.com/dcm4che/dcm4chee-arc-light/wiki/Installation
当前用户根目录: /home/work
1. cd
2. mkdir dcm4chee
3. cd dcm4chee
4. upload db-5.0.32.tar.gz, openldap-2.4.45.tgz, dcm4chee-arc-5.13.0-mysql.zip, wildfly-12.0.0.Final.zip,
  源文件:https://pan.baidu.com/s/1tYu-z0qCNQ3aYwAXs_FcOA
5. 解压
tar zxvf db-5.0.32.tar.gz
@alejosv
alejosv / nginx.conf
Created February 5, 2019 16:07 — forked from nrollr/nginx.conf
NGINX config for SSL with Let's Encrypt certs
# UPDATED 30 January 2019
# Redirect all HTTP traffic to HTTPS
server {
listen 80;
listen [::]:80;
server_name www.domain.com domain.com;
return 301 https://$host$request_uri;
}
# SSL configuration
@alejosv
alejosv / wps_office_installer.sh
Last active May 12, 2017 16:25
WPS Office Installer for Ubuntu 16.04
#!/bin/bash
#===============================================================================
# FILE: wps_office_installer.sh
#
# USAGE: ./wps_office_installer.sh
#
# DESCRIPTION: WPS Office Package Installer with spanish dictonary
#
# OPTIONS: ---
# REQUIREMENTS: ---
@alejosv
alejosv / php5.6_installer.sh
Last active July 6, 2018 16:31
PHP 5.6 Installer for Ubuntu 16.04
#!/bin/bash
#===============================================================================
# FILE: php5.6_installer.sh
#
# USAGE: ./php5.6_installer.sh
#
# DESCRIPTION: Install the stable version of the PHP 5.6
#
# OPTIONS: ---
# REQUIREMENTS: ---
@alejosv
alejosv / php7_installer.sh
Last active November 18, 2021 14:29
PHP 7.1 Installer for Ubuntu 16.04
#!/bin/bash
#===============================================================================
# FILE: php7_installer.sh
#
# USAGE: ./php7_installer.sh
#
# DESCRIPTION: Install the stable version of the PHP 7
#
# OPTIONS: ---
# REQUIREMENTS: ---
@alejosv
alejosv / nginx_installer.sh
Last active May 9, 2017 03:21
NGINX Installer for Ubuntu 16.04
#!/bin/bash
#===============================================================================
# FILE: nginx.sh
#
# USAGE: ./nginx_installer.sh
#
# DESCRIPTION: Install the stable version of the nginx server
#
# OPTIONS: ---
# REQUIREMENTS: ---