Skip to content

Commit

Permalink
Open project
Browse files Browse the repository at this point in the history
  • Loading branch information
m-thirumal authored Dec 19, 2023
1 parent a9863ac commit af9c2fa
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 18 deletions.
24 changes: 12 additions & 12 deletions Nginx/nginx.md
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)
1 change: 1 addition & 0 deletions _sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
* Open Project

* [Installation and configuration](openProject/installation.md)
* [Troubleshoot](openProject/troubleshoot.md)

* VMware ESXi

Expand Down
7 changes: 1 addition & 6 deletions openProject/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,5 @@ sudo openproject reconfigure
### Email


### Troubleshoot
1. To check database configuration - `vi /etc/openproject/conf.d/00_addon_postgres`

##### Trouble during update
1. Reconfigure the `openproject`
```sudo openproject reconfigure```
### [Troubleshoot](openProject/troubleshoot.md)

27 changes: 27 additions & 0 deletions openProject/troubleshoot.md
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"
```

0 comments on commit af9c2fa

Please sign in to comment.