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
| server { | |
| server_name gram.com; | |
| location / { | |
| root /var/www/gram; | |
| try_files $uri $uri/index.html; | |
| # protect with basic auth, we don't want to get banned by rkn | |
| auth_basic "webogram"; | |
| auth_basic_user_file /var/www/gram.htpasswd; |
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
| 'Global Error Varibles | |
| Public bDisplayError As Boolean | |
| Public sProcName, sDetails As String | |
| Public iErrorCount As Integer | |
| Public Function bCentralErrorHandler(ByVal sModule$, ByVal sSub$, ByVal sDetails$) As Boolean | |
| 'Make sure there is no errors in the Error Handling system | |
| On Error Resume Next |