-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9863ac
commit af9c2fa
Showing
4 changed files
with
41 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
1. [Installation](installation_in_Ubuntu.md) | ||
1. [Installation](Nginx/installation_in_Ubuntu.md) | ||
|
||
2. [Host Website](Host_Website_Using_Nginx.md) | ||
2. [Host Website](Nginx/Host_Website_Using_Nginx.md) | ||
|
||
3. [Host Multiple Website](multiple_website.md) | ||
3. [Host Multiple Website](Nginx/multiple_website.md) | ||
|
||
4. [Reverse Proxy with symbolic link](reverse_proxy_with_symblink.md) | ||
4. [Reverse Proxy with symbolic link](Nginx/reverse_proxy_with_symblink.md) | ||
|
||
5. [Reverse Proxy to Virtual host](reverse_poxry_to_virtual_host.md) | ||
5. [Reverse Proxy to Virtual host](Nginx/reverse_poxry_to_virtual_host.md) | ||
|
||
6. [Forward request to another domain or port](Forward%20request%20to%20another%20domain%20or%20port.md) | ||
6. [Forward request to another domain or port](Nginx/Forward%20request%20to%20another%20domain%20or%20port.md) | ||
|
||
7. [Add TLS for Nginx hosted website](Add_TLS_For_Nginx_Hosted_Site.md) | ||
7. [Add TLS for Nginx hosted website](Nginx/Add_TLS_For_Nginx_Hosted_Site.md) | ||
|
||
8. [How to rewrite path and forward it to different domain](rewrite%20Path.md) | ||
8. [How to rewrite path and forward it to different domain](Nginx/rewrite%20Path.md) | ||
|
||
9. [Nginx Security Tips](Security_tips.md) | ||
9. [Nginx Security Tips](Nginx/Security_tips.md) | ||
|
||
10. [Uninstall NGINX completely from Ubuntu](Uninstall.md) | ||
10. [Uninstall NGINX completely from Ubuntu](Nginx/Uninstall.md) | ||
|
||
11. [To access website log](log.md) | ||
11. [To access website log](Nginx/log.md) | ||
|
||
12. [Add Godaddy SSL certificate](Generate%20and%20install%20godaddy%20ssl%20certificate.md) | ||
12. [Add Godaddy SSL certificate](Nginx/Generate%20and%20install%20godaddy%20ssl%20certificate.md) |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Troubleshoot | ||
|
||
## Database Configuration | ||
|
||
To check database configuration - `vi /etc/openproject/conf.d/00_addon_postgres` | ||
|
||
## Trouble during update | ||
Reconfigure the `openproject` | ||
|
||
```sudo openproject reconfigure``` | ||
|
||
|
||
## HTTPS mode setup mismatch | ||
|
||
### Error: | ||
|
||
``` | ||
Your application is running with HTTPS mode set to http, but the request is an https request. This will result in errors! You will need to set the following configuration value: OPENPROJECT_HTTPS=true. Please see the installation documentation on how to set this configuration. | ||
``` | ||
|
||
#### Solution | ||
|
||
Open `vi /etc/openproject/conf.d/other` and set the following variable value as `true`. | ||
|
||
``` | ||
export OPENPROJECT_HTTPS="true" | ||
``` |