conf support mysql port
This commit is contained in:
		
							parent
							
								
									6e376bb85c
								
							
						
					
					
						commit
						d01820c125
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -20,7 +20,7 @@ HTTP_PORT = 3000
 | 
			
		|||
[database]
 | 
			
		||||
; Either "mysql", "postgres" or "sqlite3"(binary release only), it's your choice
 | 
			
		||||
DB_TYPE = mysql
 | 
			
		||||
HOST = 
 | 
			
		||||
HOST = 127.0.0.1:3306
 | 
			
		||||
NAME = gogs
 | 
			
		||||
USER = root
 | 
			
		||||
PASSWD =
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -38,7 +38,7 @@ func SetEngine() {
 | 
			
		|||
	var err error
 | 
			
		||||
	switch DbCfg.Type {
 | 
			
		||||
	case "mysql":
 | 
			
		||||
		orm, err = xorm.NewEngine("mysql", fmt.Sprintf("%s:%s@%s/%s?charset=utf8",
 | 
			
		||||
		orm, err = xorm.NewEngine("mysql", fmt.Sprintf("%s:%s@tcp(%s)/%s?charset=utf8",
 | 
			
		||||
			DbCfg.User, DbCfg.Pwd, DbCfg.Host, DbCfg.Name))
 | 
			
		||||
	case "postgres":
 | 
			
		||||
		orm, err = xorm.NewEngine("postgres", fmt.Sprintf("user=%s password=%s dbname=%s sslmode=%s",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue