mirror of
				https://github.com/KevinMidboe/zoff.git
				synced 2025-10-29 18:00:23 +00:00 
			
		
		
		
	Added examplefiles
This commit is contained in:
		
							
								
								
									
										7
									
								
								server/cert_config.example.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								server/cert_config.example.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
var cert = {
 | 
			
		||||
    privateKey: 'XX',
 | 
			
		||||
    certificate: 'XX',
 | 
			
		||||
    ca: 'XX'
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
module.exports = cert;
 | 
			
		||||
							
								
								
									
										15
									
								
								server/mailconfig.example.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								server/mailconfig.example.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
			
		||||
var mail_config = {
 | 
			
		||||
    port: 587,
 | 
			
		||||
    host: 'smtp.example.com',
 | 
			
		||||
    auth: {
 | 
			
		||||
        user: 'ex@amp.le',
 | 
			
		||||
        pass: 'example'
 | 
			
		||||
    },
 | 
			
		||||
    secure: true,
 | 
			
		||||
    authMethod: 'PLAIN',
 | 
			
		||||
    tls: {
 | 
			
		||||
        ciphers:'SSLv3'
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
module.exports = mail_config;
 | 
			
		||||
		Reference in New Issue
	
	Block a user