mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 01:15:14 +00:00 
			
		
		
		
	* Fix wrapping when too many hosts are shown (#207) * Update npm packages, fixes CVE-2019-10757 * Revert some breaking packages * Major overhaul - Docker buildx support in CI - Cypress API Testing in CI - Restructured folder layout (insert clean face meme) - Added Swagger documentation and validate API against that (to be completed) - Use common base image for all supported archs, which includes updated nginx with ipv6 support - Updated certbot and changes required for it - Large amount of Hosts names will wrap in UI - Updated packages for frontend - Version bump 2.1.0 * Updated documentation * Fix JWT expire time going crazy. Now set to 1day * Backend JS formatting rules * Remove v1 importer, I doubt anyone is using v1 anymore * Added backend formatting rules and enforce them in Jenkins builds * Fix CI, doesn't need a tty * Thanks bcrypt. Why can't you just be normal. * Cleanup after syntax check Co-authored-by: Marcelo Castagna <margaale@users.noreply.github.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<div class="location-block card">
 | 
						|
    <div class="card-body">
 | 
						|
        <div class="row">
 | 
						|
            <div class="col-sm-12">
 | 
						|
                <div class="form-group">
 | 
						|
                    <label class="form-label"><%- i18n('locations', 'location_label') %> <span class="form-required">*</span></label>
 | 
						|
                    <div class="row gutter-xs">
 | 
						|
                        <div class="col">
 | 
						|
                            <div class="input-group">
 | 
						|
                                <span class="input-group-prepend">
 | 
						|
                                    <span class="input-group-text">location</span>
 | 
						|
                                </span>
 | 
						|
                                <input type="text" name="path" class="form-control model" value="<%- path %>" placeholder="<%- i18n('locations', 'path') %>" required>
 | 
						|
                            </div>
 | 
						|
                        </div>
 | 
						|
                        <div class="col-auto">
 | 
						|
                            <div class="selectgroup">
 | 
						|
                                <label class="selectgroup-item">
 | 
						|
                                    <input type="checkbox" class="selectgroup-input">
 | 
						|
                                    <span class="selectgroup-button">
 | 
						|
                                        <i class="fe fe-settings"></i>
 | 
						|
                                    </span>
 | 
						|
                                </label>
 | 
						|
                            </div>
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
            <div class="col-sm-3 col-md-3">
 | 
						|
                <div class="form-group">
 | 
						|
                    <label class="form-label"><%- i18n('proxy-hosts', 'forward-scheme') %><span class="form-required">*</span></label>
 | 
						|
                    <select name="forward_scheme" class="form-control custom-select model" placeholder="http">
 | 
						|
                        <option value="http" <%- forward_scheme === 'http' ? 'selected' : '' %>>http</option>
 | 
						|
                        <option value="https" <%- forward_scheme === 'https' ? 'selected' : '' %>>https</option>
 | 
						|
                    </select>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
            <div class="col-sm-5 col-md-5">
 | 
						|
                <div class="form-group">
 | 
						|
                    <label class="form-label"><%- i18n('proxy-hosts', 'forward-host') %><span class="form-required">*</span></label>
 | 
						|
                    <input type="text" name="forward_host" class="form-control text-monospace model" placeholder="" value="<%- forward_host %>" autocomplete="off" maxlength="50" required>
 | 
						|
                    <span style="font-size: 9px;"><%- i18n('proxy-hosts', 'custom-forward-host-help') %></span>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
            <div class="col-sm-4 col-md-4">
 | 
						|
                <div class="form-group">
 | 
						|
                    <label class="form-label"><%- i18n('proxy-hosts', 'forward-port') %> <span class="form-required">*</span></label>
 | 
						|
                    <input name="forward_port" type="number" class="form-control text-monospace model" placeholder="80" value="<%- forward_port %>" required>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="row config">
 | 
						|
            <div class="col-md-12">
 | 
						|
                <div class="form-group">
 | 
						|
                    <textarea name="advanced_config" rows="8" class="form-control text-monospace model" placeholder="# <%- i18n('all-hosts', 'advanced-warning') %>"><%- advanced_config %></textarea>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <a href="#" class="card-link location-delete">
 | 
						|
            <i class="fa fa-trash"></i> <%- i18n('locations', 'delete') %>
 | 
						|
        </a>
 | 
						|
    </div>
 | 
						|
</div>     |