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
root /OPENCART_ROOT_FOLDER_PATH/vuefront; #setup your opencart root folder path here following with /vuefront on the end. This will return the VueFront Web App by default.
99
+
index index.html index.php;
100
+
101
+
location / {
102
+
try_files $uri $uri/ $uri.html /200.html;
103
+
104
+
# required to return OpenCart index.php
105
+
location /index.php {
106
+
root /OPENCART_ROOT_FOLDER_PATH/; #setup your opencart root folder path
#You should have it already since you are running OpenCart on Nginx. But just in case, we supplied this rule below.
162
+
location ~ \.php$ {
163
+
include snippets/fastcgi-php.conf;
164
+
fastcgi_pass unix:/var/run/php/YOUR_PHP_FPM_SOKET.sock; #setup your php-fpm socket
165
+
}
166
+
}</pre>
167
+
</div>
74
168
</div>
75
169
</template>
76
170
<script>
@@ -104,7 +198,9 @@ export default {
104
198
"textConfigureApache": "Configure .htaccess",
105
199
"descriptionConfigureApache": "For VueFront Web App to replace your current frontend, you will need to configure your .htaccess. <br>Although we do this automaticly for you, you can still customize it you yourself.<br> <ul> <li>Turn off the VueFront app. Switch the toggle on top of the page to OFF</li> <li>Use your text editor to edit the .htaccess file with the following rules:</li> </ul>",
"descriptionConfigureNginx": "For VueFront Web App to replace your current frontend, you will need to configure your Nginx configuration file. This can only be done manually via your FTP or File Manager. Use your text editor to add the following rules:"
0 commit comments