Heim > Artikel > Betrieb und Instandhaltung > So konfigurieren Sie Nginx und Tomcat für den Zugriff auf Bilder und statische Seiten
Die erste Methode: Nginx-Konfiguration
1. Erstellen Sie den Dateipfad:
[root@localhost /]# mkdir /data/soft/ [root@localhost ~]# cd /data/soft/ [root@localhost soft]# mkdir html images
2. Legen Sie das Bild im Bilderverzeichnis ab
[root@localhost soft]# cd images/ [root@localhost images]# ll 总用量 80 -rw-r--r--. 1 root root 9503 4月 25 17:06 thpzfulfjn.jpg -rw-r--r--. 1 root root 16083 4月 25 17:06 thr2c5vcmz.jpg -rw-r--r--. 1 root root 12218 4月 25 17:06 thrg3yx53t.jpg -rw-r--r--. 1 root root 15048 4月 25 17:06 thsuf51vtr.jpg -rw-r--r--. 1 root root 21799 4月 25 17:06 thvwslf8ze.jpg
4. Installieren Sie nginx und starten
Ob Sie sich für „yum“ oder „compilieren“ entscheiden, hängt von Ihren Vorlieben ab. Ich entscheide mich dafür, das Installationsmodul selbst zu kompilieren und anzupassen. Tar. Schauen Sie sich das Bild an
Natürlich können statische Seiten und Bilder unter den Nginx-Einstellungen erfolgreich aufgerufen werden
Zweite Methode: Tomcat[root@localhost html]# cat index.html this is test page !!!!2. Entpacken tomcat und starten Sie es
rrree
3. Kann auf den lokalen Test zugegriffen werden?tar -zxvf pcre-8.34.tar.gz cd pcre-8.34 /configure && make && make install tar -zxvf zlib-1.2.8.tar.gz cd zlib-1.2.8 /configure && make && make install tar -zxvf openssl-1.0.1g.tar.gz cd openssl-1.0.1g /config && make && make installTesten Sie den Zugriff auf die HTML-Seite Legen Sie den Bilderordner weiterhin unter „wepapps“ ab. Unter „Bilder“ befinden sich Bilder.
tar -zxvf nginx-1.9.0.tar.gz cd nginx-1.9.0 #./configure --prefix=/data/soft/nginx \ --user=www \ --group=www \ --with-mail \ --with-mail_ssl_module \ --with-http_ssl_module \ --with-http_flv_module \ --with-http_dav_module \ --with-http_sub_module \ --with-http_spdy_module \ --with-http_realip_module \ --with-http_addition_module \ --with-http_gzip_static_module \ --with-http_stub_status_module \ --with-pcre=/data/src/pcre-8.34 \ --with-zlib=/data/src/zlib-1.2.8 \ --with-openssl=/data/src/openssl-1.0.1gBesuchen Sie wie folgt direkt im Browser
Das obige ist der detaillierte Inhalt vonSo konfigurieren Sie Nginx und Tomcat für den Zugriff auf Bilder und statische Seiten. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!