You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Written in Go and Vue, distribution is a single executable binary.
77
79
- Automatically test configuration file and reload nginx after saving configuration.
78
80
- Web Terminal
79
-
-Frontend support Dark Mode
80
-
-Frontend use Responsive Web Design
81
+
- Dark Mode
82
+
- Responsive Web Design
81
83
82
84
### Internationalization
83
85
@@ -99,9 +101,19 @@ We welcome translations into any language.
99
101
100
102
### Before Use
101
103
102
-
The Nginx UI follows the Nginx standard of creating site configuration files in the `sites-available` directory under
103
-
the Nginx configuration directory (auto-detected). The configuration files for an enabled site will create a soft link
104
-
to the `sites-enabled` directory. Therefore, you may need to adjust the way the configuration files are organised.
104
+
The Nginx UI follows the Debian web server configuration file standard. Created site configuration files will be placed in the `sites-available` folder that under the Nginx configuration folder (auto-detected). The configuration files for an enabled site will create a soft link to the `sites-enabled` folder. You may need to adjust the way the configuration files are organised.
105
+
106
+
For non-Debian (and Ubuntu) systems, you may need to change the contents of the `nginx.conf` configuration file to the Debian style as shown below.
107
+
108
+
```nginx
109
+
http {
110
+
# ...
111
+
include /etc/nginx/conf.d/*.conf;
112
+
include /etc/nginx/sites-enabled/*;
113
+
}
114
+
```
115
+
116
+
For more information: [debian/conf/nginx.conf](https://salsa.debian.org/nginx-team/nginx/-/blob/master/debian/conf/nginx.conf#L59-L60)
105
117
106
118
### Installation
107
119
@@ -159,14 +171,15 @@ systemctl stop nginx-ui
159
171
systemctl restart nginx-ui
160
172
```
161
173
162
-
##Use Docker
174
+
#### With Docker
163
175
164
-
Docker deploy example
165
-
-`uozi/nginx-ui:latest` base on `nginx:latest`, you can replace the Nginx on host by publishing port 80 and 443 to host
176
+
You can use our `uozi/nginx-ui:latest`[image](https://hub.docker.com/r/uozi/nginx-ui) in docker, which is base on `nginx:latest`. You can replace the Nginx on host by publishing port 80 and 443 to host.
166
177
167
-
- The volume mapping to `/etc/nginx` should be empty.
178
+
Note: The volume mapping to `/etc/nginx` should be empty.
0 commit comments