A clear and concise description of what the bug is.
Where is this occurring and more details about the environment url.
If applicable, add queries or mutations that cause problems
SQL Server 2017 | |
---------------- | |
Enterprise Core - 6GPYM-VHN83-PHDM2-Q9T2R-KBV83 | |
Developer - 22222-00000-00000-00000-00000 | |
Enterprise - TDKQD-PKV44-PJT4N-TCJG2-3YJ6B | |
Standard - PHDV4-3VJWD-N7JVP-FGPKY-XBV89 | |
Web - WV79P-7K6YG-T7QFN-M3WHF-37BXC | |
https://www.teamos-hkrg.com/index.php?threads/microsoft-sql-server-english-2017-rtm-teamos.42103/ |
builder.Services.AddDbContextFactory<TemplateContext>(opt => { | |
var dbHost = Environment.GetEnvironmentVariable("DB_HOST"); | |
var dbPort = Environment.GetEnvironmentVariable("DB_PORT"); | |
var dbUser = Environment.GetEnvironmentVariable("DATABASE_USER"); | |
var dbPassword = Environment.GetEnvironmentVariable("DATABASE_PASSWORD"); | |
var dbName = Environment.GetEnvironmentVariable("DB_NAME"); | |
var connectionString = $"Server={dbHost};port={dbPort};user id={dbUser};password={dbPassword};database={dbName};pooling=true"; |
feat: Agrega una nueva feature para el usuario, está feature puede ser un cambio en el comportamiento esperado de la aplicación
fix: Arregla un bug
docs: Documentación
style: Formato en el código
refactor: Reescribe estructura pero no cambia el comportamiento
apt update | |
apt-get remove docker docker-engine docker.io | |
apt install docker.io | |
systemctl status docker | |
docker run -d --restart=unless-stopped -p 8080:80 -p 8443:443 --privileged rancher/rancher:latest --acme-domain rancher.carlosmto.com | |
docker ps | |
#https://rancher.com/docs/rancher/v2.5/en/quick-start-guide/workload/quickstart-deploy-workload-ingress/ |
user www-data; | |
worker_processes 4;#nproc lscpu | |
pid /run/nginx.pid; | |
include /etc/nginx/modules-enabled/*.conf; | |
events { | |
worker_connections 1024; #ulimit -n | |
multi_accept on; | |
use epoll; | |
} |
#migration | |
rails g migration AddConditionableToConditionalObjetives conditionable:references:\{polymorphic\} | |
#migration | |
rails g model ConditionalObjetive conditionable:references:\{polymorphic\} | |
#generate | |
class AddConditionableToConditionalObjetives < ActiveRecord::Migration |
<?php | |
/* | |
Created by: [email protected] 16/03/2014 | |
Name of script: Create WordPress Admin User | |
Description: This script will create an admin user in wordpress | |
Usage: Create a new file in the root of the hosting account and drop this code into it then execute the script through the browser. |
worker_processes auto; | |
events { | |
# Allows up to 1024 connections, can be adjusted | |
worker_connections 1024; | |
} | |
# RTMP configuration | |
rtmp { | |
server { | |
listen 1935; # Listen on standard RTMP port |