This file contains hidden or 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
| upstream ghost_doiqua { | |
| server 127.0.0.1:2368; | |
| keepalive 64; | |
| } | |
| proxy_cache_path /var/run/cache levels=1:2 keys_zone=STATIC:75m inactive=24h max_size=128m; | |
| server { | |
| listen 80; | |
| server_name doiqua.co; |
This file contains hidden or 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
| [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\DS1-KnowledgeBase_{postfix}] | |
| "Driver"="C:\\Program Files\\MySQL\\Connector ODBC 5.2\\myodbc5w.dll" | |
| "SERVER"="77.245.67.98" | |
| "UID"="resalesuser1" | |
| "PWD"="sqlpwd2lv" | |
| "DATABASE"="KnowledgeBase_{postfix}" | |
| "PORT"="3306" | |
| "FOUND_ROWS"="1" | |
| "BIG_PACKETS"="1" | |
| "MULTI_STATEMENTS"="1" |
This file contains hidden or 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
| function myFunction() | |
| { | |
| var gSalary = 12000000; // gross salary | |
| var sInsurance = 8; // social insurance | |
| var hInsurance = 1.5; | |
| var uInsurance = 1; | |
| var iDeduction = 9000000; | |
| var ifPit; | |
| var pRate = 5; | |
| var finalResult; |
NewerOlder